From e3cf0ff35c686e325cc3e393395fd9a5f2882421 Mon Sep 17 00:00:00 2001 From: mh-northlander Date: Fri, 10 Jan 2025 15:59:40 +0900 Subject: [PATCH] bump version -> 0.6.11-a1 --- Cargo.toml | 2 +- python/docs/source/conf.py | 2 +- python/py_src/sudachipy/__init__.py | 2 +- python/setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 72906b21..f00af668 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ default-members = ["sudachi", "sudachi-cli"] [workspace.package] -version = "0.6.10" +version = "0.6.11-a1" 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 87b6c0c7..1a50af96 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.10' +release = '0.6.11-a1' # -- General configuration --------------------------------------------------- diff --git a/python/py_src/sudachipy/__init__.py b/python/py_src/sudachipy/__init__.py index 35e3ed92..e50d2d3e 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.10" +__version__ = "0.6.11-a1" _DEFAULT_RESOURCEDIR = _Path(__file__).resolve().parent / 'resources' _DEFAULT_SETTINGFILE = _DEFAULT_RESOURCEDIR / 'sudachi.json' diff --git a/python/setup.py b/python/setup.py index 09ab6d90..9f821fd1 100644 --- a/python/setup.py +++ b/python/setup.py @@ -17,7 +17,7 @@ setup( name="SudachiPy", - version="0.6.10", + version="0.6.11-a1", description="Python version of Sudachi, the Japanese Morphological Analyzer", long_description=open('README.md', encoding='utf-8').read(), long_description_content_type="text/markdown",