From c7d208bc7c45d10fe604b0da0edc8a29e09a3e56 Mon Sep 17 00:00:00 2001 From: mh-northlander Date: Tue, 19 Nov 2024 16:28:41 +0900 Subject: [PATCH] bump version -> 0.6.9 --- Cargo.lock | 14 +++++++------- Cargo.toml | 2 +- python/docs/source/conf.py | 2 +- python/py_src/sudachipy/__init__.py | 2 +- python/setup.py | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index de284ecd..31a5ee30 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -289,7 +289,7 @@ dependencies = [ [[package]] name = "default_input_text" -version = "0.6.9-a1" +version = "0.6.9" dependencies = [ "sudachi", ] @@ -432,14 +432,14 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" [[package]] name = "join_katakana_oov" -version = "0.6.9-a1" +version = "0.6.9" dependencies = [ "sudachi", ] [[package]] name = "join_numeric" -version = "0.6.9-a1" +version = "0.6.9" dependencies = [ "sudachi", ] @@ -794,7 +794,7 @@ dependencies = [ [[package]] name = "simple_oov" -version = "0.6.9-a1" +version = "0.6.9" dependencies = [ "sudachi", ] @@ -807,7 +807,7 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "sudachi" -version = "0.6.9-a1" +version = "0.6.9" dependencies = [ "aho-corasick", "bitflags", @@ -835,7 +835,7 @@ dependencies = [ [[package]] name = "sudachi-cli" -version = "0.6.9-a1" +version = "0.6.9" dependencies = [ "cfg-if", "clap", @@ -855,7 +855,7 @@ dependencies = [ [[package]] name = "sudachipy" -version = "0.6.9-a1" +version = "0.6.9" dependencies = [ "pyo3", "scopeguard", diff --git a/Cargo.toml b/Cargo.toml index ef063507..f41d2dc2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ default-members = ["sudachi", "sudachi-cli"] [workspace.package] -version = "0.6.9-a1" +version = "0.6.9" authors = ["Works Applications "] edition = "2021" rust-version = "1.74.1" diff --git a/python/docs/source/conf.py b/python/docs/source/conf.py index d744aa33..addfc676 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.9-a1' +release = '0.6.9' # -- General configuration --------------------------------------------------- diff --git a/python/py_src/sudachipy/__init__.py b/python/py_src/sudachipy/__init__.py index fb551538..9207f57b 100644 --- a/python/py_src/sudachipy/__init__.py +++ b/python/py_src/sudachipy/__init__.py @@ -14,7 +14,7 @@ from importlib.util import find_spec as _find_spec from pathlib import Path as _Path -__version__ = "0.6.9-a1" +__version__ = "0.6.9" _DEFAULT_RESOURCEDIR = _Path(__file__).resolve().parent / 'resources' _DEFAULT_SETTINGFILE = _DEFAULT_RESOURCEDIR / 'sudachi.json' diff --git a/python/setup.py b/python/setup.py index b3eedcc5..288acea5 100644 --- a/python/setup.py +++ b/python/setup.py @@ -17,7 +17,7 @@ setup( name="SudachiPy", - version="0.6.9-a1", + version="0.6.9", description="Python version of Sudachi, the Japanese Morphological Analyzer", long_description=open('README.md', encoding='utf-8').read(), long_description_content_type="text/markdown",