Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version up to 0.1.1 #73

Merged
merged 1 commit into from Jul 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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