Skip to content

Commit

Permalink
Version up to 0.6.0 (#343)
Browse files Browse the repository at this point in the history
  • Loading branch information
tushuhei authored Nov 6, 2023
1 parent 597c3ab commit 93ac23c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- markdownlint-disable MD014 -->
# BudouX

[![PyPI](https://img.shields.io/pypi/v/budoux?color=blue)](https://pypi.org/project/budoux/) [![npm](https://img.shields.io/npm/v/budoux?color=yellow)](https://www.npmjs.com/package/budoux)
[![PyPI](https://img.shields.io/pypi/v/budoux?color=blue)](https://pypi.org/project/budoux/) [![npm](https://img.shields.io/npm/v/budoux?color=yellow)](https://www.npmjs.com/package/budoux) [![Maven Central](https://img.shields.io/maven-central/v/com.google.budoux/budoux)](https://mvnrepository.com/artifact/com.google.budoux/budoux)

Standalone. Small. Language-neutral.

Expand Down
2 changes: 1 addition & 1 deletion budoux/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

from . import parser

__version__ = "0.5.2"
__version__ = "0.6.0"

Parser = parser.Parser
load_default_japanese_parser = parser.load_default_japanese_parser
Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<groupId>com.google.budoux</groupId>
<artifactId>budoux</artifactId>
<version>0.5.2</version>
<version>0.6.0</version>

<name>BudouX</name>
<url>https://google.github.io/budoux/</url>
Expand Down
2 changes: 1 addition & 1 deletion javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "budoux",
"version": "0.5.2",
"version": "0.6.0",
"description": "A small chunk segmenter.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion javascript/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import {
loadDefaultJapaneseParser,
} from './index.js';

const CLI_VERSION = '0.5.2';
const CLI_VERSION = '0.6.0';
const defaultParsers = loadDefaultParsers();

/**
Expand Down

0 comments on commit 93ac23c

Please sign in to comment.