diff --git a/CHANGELOG.md b/CHANGELOG.md index a284077..be01f7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changes -## [Unreleased] +## [v1.9.2] - 2023-11-26 - Fixed bug whereby charstate labels with illegal tokens were incorrectly read. - Fixed bug whereby the last charstate label was never detected as duplicate. diff --git a/docs/conf.py b/docs/conf.py index 1f6698a..1e9a196 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ project = 'commonnexus' copyright = '2023, Robert Forkel' author = 'Robert Forkel' -release = '1.9.2.dev0' +release = '1.9.2' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/setup.cfg b/setup.cfg index 32a236f..07432fa 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = commonnexus -version = 1.9.2.dev0 +version = 1.9.2 author = Robert Forkel author_email = robert_forkel@eva.mpg.de description = A nexus (phylogenetics) file reader and writer (.nex, .trees) diff --git a/src/commonnexus/__init__.py b/src/commonnexus/__init__.py index 15a4bac..aacfe16 100644 --- a/src/commonnexus/__init__.py +++ b/src/commonnexus/__init__.py @@ -1,4 +1,4 @@ from .nexus import Nexus, Config # noqa: F401 from commonnexus.blocks import Block # noqa: F401 -__version__ = '1.9.2.dev0' +__version__ = '1.9.2'