From b26bb2c1367092a45c2eb3c9fc23b37c69b14452 Mon Sep 17 00:00:00 2001 From: Arseny Tolmachev Date: Thu, 16 Jun 2022 09:05:12 +0900 Subject: [PATCH] version -> 0.6.4 --- Cargo.lock | 14 +++++++------- plugin/input_text/default_input_text/Cargo.toml | 2 +- plugin/oov/simple_oov/Cargo.toml | 2 +- plugin/path_rewrite/join_katakana_oov/Cargo.toml | 2 +- plugin/path_rewrite/join_numeric/Cargo.toml | 2 +- python/Cargo.toml | 2 +- python/docs/source/conf.py | 2 +- python/py_src/sudachipy/__init__.py | 2 +- python/setup.py | 2 +- sudachi-cli/Cargo.toml | 2 +- sudachi/Cargo.toml | 2 +- 11 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ff5a114e..c6a97c85 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -226,7 +226,7 @@ dependencies = [ [[package]] name = "default_input_text" -version = "0.6.4-a1" +version = "0.6.4" dependencies = [ "sudachi", ] @@ -345,14 +345,14 @@ checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d" [[package]] name = "join_katakana_oov" -version = "0.6.4-a1" +version = "0.6.4" dependencies = [ "sudachi", ] [[package]] name = "join_numeric" -version = "0.6.4-a1" +version = "0.6.4" dependencies = [ "sudachi", ] @@ -783,7 +783,7 @@ dependencies = [ [[package]] name = "simple_oov" -version = "0.6.4-a1" +version = "0.6.4" dependencies = [ "sudachi", ] @@ -826,7 +826,7 @@ dependencies = [ [[package]] name = "sudachi" -version = "0.6.4-a1" +version = "0.6.4" dependencies = [ "aho-corasick", "bitflags", @@ -854,7 +854,7 @@ dependencies = [ [[package]] name = "sudachi-cli" -version = "0.6.4-a1" +version = "0.6.4" dependencies = [ "cfg-if", "memmap2", @@ -874,7 +874,7 @@ dependencies = [ [[package]] name = "sudachipy" -version = "0.6.4-a1" +version = "0.6.4" dependencies = [ "pyo3", "sudachi", diff --git a/plugin/input_text/default_input_text/Cargo.toml b/plugin/input_text/default_input_text/Cargo.toml index 6b515cc0..b9fcc1a3 100644 --- a/plugin/input_text/default_input_text/Cargo.toml +++ b/plugin/input_text/default_input_text/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "default_input_text" -version = "0.6.4-a1" +version = "0.6.4" authors = ["Works Applications "] edition = "2018" license = "Apache-2.0" diff --git a/plugin/oov/simple_oov/Cargo.toml b/plugin/oov/simple_oov/Cargo.toml index 24b5a13b..7e9e6806 100644 --- a/plugin/oov/simple_oov/Cargo.toml +++ b/plugin/oov/simple_oov/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simple_oov" -version = "0.6.4-a1" +version = "0.6.4" authors = ["Works Applications "] edition = "2018" license = "Apache-2.0" diff --git a/plugin/path_rewrite/join_katakana_oov/Cargo.toml b/plugin/path_rewrite/join_katakana_oov/Cargo.toml index 87006794..920a869d 100644 --- a/plugin/path_rewrite/join_katakana_oov/Cargo.toml +++ b/plugin/path_rewrite/join_katakana_oov/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "join_katakana_oov" -version = "0.6.4-a1" +version = "0.6.4" authors = ["Works Applications "] edition = "2018" license = "Apache-2.0" diff --git a/plugin/path_rewrite/join_numeric/Cargo.toml b/plugin/path_rewrite/join_numeric/Cargo.toml index dc335e49..10e510d9 100644 --- a/plugin/path_rewrite/join_numeric/Cargo.toml +++ b/plugin/path_rewrite/join_numeric/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "join_numeric" -version = "0.6.4-a1" +version = "0.6.4" authors = ["Works Applications "] edition = "2018" license = "Apache-2.0" diff --git a/python/Cargo.toml b/python/Cargo.toml index cfb03e3b..98f04c90 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sudachipy" -version = "0.6.4-a1" +version = "0.6.4" edition = "2018" description = "Python bindings of sudachi.rs, the Japanese Morphological Analyzer" homepage = "https://github.com/WorksApplications/sudachi.rs" diff --git a/python/docs/source/conf.py b/python/docs/source/conf.py index 56a6dbd0..34c12ca5 100644 --- a/python/docs/source/conf.py +++ b/python/docs/source/conf.py @@ -22,7 +22,7 @@ author = 'Works Applications' # The full version, including alpha/beta/rc tags -release = '0.6.4-a1' +release = '0.6.4' # -- General configuration --------------------------------------------------- diff --git a/python/py_src/sudachipy/__init__.py b/python/py_src/sudachipy/__init__.py index 0effc47c..e09a8c63 100644 --- a/python/py_src/sudachipy/__init__.py +++ b/python/py_src/sudachipy/__init__.py @@ -11,7 +11,7 @@ from importlib.util import find_spec from pathlib import Path -__version__ = "0.6.4-a1" +__version__ = "0.6.4" _DEFAULT_RESOURCEDIR = Path(__file__).resolve().parent / 'resources' _DEFAULT_SETTINGFILE = _DEFAULT_RESOURCEDIR / 'sudachi.json' diff --git a/python/setup.py b/python/setup.py index d904acbb..94b008a6 100644 --- a/python/setup.py +++ b/python/setup.py @@ -17,7 +17,7 @@ setup( name="SudachiPy", - version="0.6.4-a1", + version="0.6.4", description="Python version of Sudachi, the Japanese Morphological Analyzer", long_description=open('README.md', encoding='utf-8').read(), long_description_content_type="text/markdown", diff --git a/sudachi-cli/Cargo.toml b/sudachi-cli/Cargo.toml index a3d104ac..15a86435 100644 --- a/sudachi-cli/Cargo.toml +++ b/sudachi-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sudachi-cli" -version = "0.6.4-a1" +version = "0.6.4" authors = ["Works Applications "] edition = "2018" description = "Rust version of Sudachi, the Japanese Morphological Analyzer" diff --git a/sudachi/Cargo.toml b/sudachi/Cargo.toml index 79eb5ce7..edd015ab 100644 --- a/sudachi/Cargo.toml +++ b/sudachi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sudachi" -version = "0.6.4-a1" +version = "0.6.4" authors = ["Works Applications "] edition = "2018" description = "Rust version of Sudachi, the Japanese Morphological Analyzer"