diff --git a/docs/conf.py b/docs/conf.py index 5bd98a6..4893ef9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -72,9 +72,9 @@ # built documents. # # The short X.Y version. -version = "0.2.3" +version = "0.2.4" # The full version, including alpha/beta/rc tags. -release = "0.2.3" +release = "0.2.4" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/phylotrackpy/__init__.py b/phylotrackpy/__init__.py index 429897b..329eadd 100644 --- a/phylotrackpy/__init__.py +++ b/phylotrackpy/__init__.py @@ -2,7 +2,7 @@ __author__ = """Emily Dolson""" __email__ = 'emilydolson@gmail.com' -__version__ = '0.2.3' +__version__ = '0.2.4' from . import systematics diff --git a/setup.cfg b/setup.cfg index 8a843f5..6b753a6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.3 +current_version = 0.2.4 commit = True tag = True diff --git a/setup.py b/setup.py index 27cf5e2..5a52e73 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from pybind11.setup_helpers import Pybind11Extension, build_ext from setuptools import setup -__version__ = "0.2.3" +__version__ = "0.2.4" # The main interface is through Pybind11Extension. # * You can add cxx_std=11/14/17, and then build_ext can be removed.