From f245252b234033e24394fabe8208c6e152d9fbb5 Mon Sep 17 00:00:00 2001 From: taishi-i Date: Mon, 29 Jan 2024 00:57:15 +0900 Subject: [PATCH] update v0.2.11 --- docs/conf.py | 4 ++-- nagisa/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 02a4cd0..3dbdae5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,9 +24,9 @@ author = 'Taishi Ikeda' # The short X.Y version -version = '0.2.11rc1' +version = '0.2.11' # The full version, including alpha/beta/rc tags -release = '0.2.11rc1' +release = '0.2.11' # -- General configuration --------------------------------------------------- diff --git a/nagisa/__init__.py b/nagisa/__init__.py index 4c74741..0ae5323 100644 --- a/nagisa/__init__.py +++ b/nagisa/__init__.py @@ -3,7 +3,7 @@ from nagisa.tagger import Tagger from nagisa.train import fit -version = '0.2.11rc1' +version = '0.2.11' # Initialize instance tagger = Tagger() # Functions diff --git a/setup.py b/setup.py index 39890ce..1e535e8 100644 --- a/setup.py +++ b/setup.py @@ -86,12 +86,12 @@ def switch_install_requires(): packages=['nagisa'], author='Taishi Ikeda', author_email='taishi.ikeda.0323@gmail.com', - version='0.2.11rc1', + version='0.2.11', description='A Japanese tokenizer based on recurrent neural networks', long_description_content_type="text/markdown", long_description=long_description, url='https://github.com/taishi-i/nagisa', - download_url='https://github.com/taishi-i/nagisa/archive/0.2.10.tar.gz', + download_url='https://github.com/taishi-i/nagisa/archive/0.2.11.tar.gz', license='MIT License', platforms='Unix', setup_requires=['six', 'cython', 'numpy'],