Skip to content

Commit

Permalink
Version up to 0.2.0 (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
tushuhei authored Aug 4, 2022
1 parent 89c56db commit 449a2ec
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
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.1.1"
__version__ = "0.2.0"

Parser = parser.Parser
load_default_japanese_parser = parser.load_default_japanese_parser
Expand Down
4 changes: 1 addition & 3 deletions demo/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions javascript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.1.2",
"version": "0.2.0",
"description": "A small chunk segmenter.",
"repository": {
"type": "git",
Expand Down
4 changes: 3 additions & 1 deletion javascript/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ import * as readline from 'readline';
import {Command} from 'commander';
import {Parser, loadDefaultJapaneseParser} from './parser.js';

const CLI_VERSION = '0.2.0';

/**
* Run the command line interface program.
* @param argv process.argv.
Expand All @@ -37,7 +39,7 @@ export const cli = (argv: string[]) => {
.option('-m, --model <json>', 'custom model file path')
.argument('[txt]', 'text');

program.version('0.1.2');
program.version(CLI_VERSION);

program.parse(argv);

Expand Down

0 comments on commit 449a2ec

Please sign in to comment.