From 4be57bd0e7034d849670bfc6d3250e0f08ec2689 Mon Sep 17 00:00:00 2001 From: Robert Forkel Date: Thu, 5 Oct 2023 20:53:58 +0200 Subject: [PATCH] bump version for development --- docs/conf.py | 2 +- setup.cfg | 2 +- src/commonnexus/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 2a80312..7206fab 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ project = 'commonnexus' copyright = '2023, Robert Forkel' author = 'Robert Forkel' -release = '1.6.1' +release = '1.6.2.dev0' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/setup.cfg b/setup.cfg index 2e09ad2..f2372ab 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = commonnexus -version = 1.6.1 +version = 1.6.2.dev0 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 8174c4e..fa193b1 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.6.1' +__version__ = '1.6.2.dev0'