Skip to content

Commit

Permalink
Version up to 0.1.1 (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
tushuhei committed Jul 14, 2022
1 parent 4b3b8d7 commit 43b3569
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion budoux/__init__.py
Expand Up @@ -15,7 +15,7 @@

from . import parser

__version__ = "0.1.0"
__version__ = "0.1.1"

Parser = parser.Parser
load_default_japanese_parser = parser.load_default_japanese_parser
Expand Down
2 changes: 1 addition & 1 deletion demo/package.json
@@ -1,6 +1,6 @@
{
"name": "budoux-demo",
"version": "0.1.0",
"version": "0.1.1",
"description": "A demo app for BudouX",
"main": "static/app.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion javascript/package.json
@@ -1,6 +1,6 @@
{
"name": "budoux",
"version": "0.1.0",
"version": "0.1.1",
"description": "A small chunk segmenter.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion javascript/src/cli.ts
Expand Up @@ -42,7 +42,7 @@ export const cli = (argv: string[]) => {
.option('-m, --model <json>', 'custom model file path')
.argument('[txt]', 'text');

program.version('0.1.0');
program.version('0.1.1');

program.parse(argv);

Expand Down

0 comments on commit 43b3569

Please sign in to comment.