From 025079da37f47efc903adcf18c61b53f0129c3b3 Mon Sep 17 00:00:00 2001 From: Matthew Andres Moreno Date: Tue, 21 Nov 2023 19:34:42 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.16=20=E2=86=92=200.1.17?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/conf.py | 4 ++-- phylotrackpy/__init__.py | 2 +- setup.cfg | 3 ++- setup.py | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index b39dfbc..7b28cfe 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -68,9 +68,9 @@ # built documents. # # The short X.Y version. -version = "0.1.16" +version = "0.1.17" # The full version, including alpha/beta/rc tags. -release = "0.1.16" +release = "0.1.17" # 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 e25c73f..717a6f6 100644 --- a/phylotrackpy/__init__.py +++ b/phylotrackpy/__init__.py @@ -2,7 +2,7 @@ __author__ = """Emily Dolson""" __email__ = 'emilydolson@gmail.com' -__version__ = '0.1.16' +__version__ = '0.1.17' import phylotrackpy.systematics diff --git a/setup.cfg b/setup.cfg index 7eb09a1..eb2905d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.16 +current_version = 0.1.17 commit = True tag = True @@ -18,3 +18,4 @@ replace = __version__ = '{new_version}' [metadata] long_description = file: README.md long_description_content_type = text/markdown + diff --git a/setup.py b/setup.py index 40e8b17..23da264 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.1.16" +__version__ = "0.1.17" # The main interface is through Pybind11Extension. # * You can add cxx_std=11/14/17, and then build_ext can be removed.