From d34100b4b7938c3a81baf0299a65d159260fed9d Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Mon, 3 Aug 2020 01:32:51 -0500 Subject: [PATCH] Bump up to version 2.3.0. --- doc/source/conf.py | 4 ++-- freud/__init__.py | 2 +- setup.cfg | 3 +-- setup.py | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 03ee37f4d..6edbd4ad2 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -68,8 +68,8 @@ # built documents. # # version and release are set the same for this package. -version = '2.2.0' -release = '2.2.0' +version = '2.3.0' +release = '2.3.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/freud/__init__.py b/freud/__init__.py index 7294a174e..00a513712 100644 --- a/freud/__init__.py +++ b/freud/__init__.py @@ -22,7 +22,7 @@ # automatic selection runs, the user cannot change it. set_num_threads(0) -__version__ = '2.2.0' +__version__ = '2.3.0' __all__ = [ '__version__', diff --git a/setup.cfg b/setup.cfg index 0db125677..07fe86089 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.2.0 +current_version = 2.3.0 commit = True tag = True message = Bump up to version {new_version}. @@ -27,4 +27,3 @@ ignore_errors = True [coverage:html] directory = coverage_html_report - diff --git a/setup.py b/setup.py index 4d61570b8..75ad3355a 100644 --- a/setup.py +++ b/setup.py @@ -407,7 +407,7 @@ def find_tbb(tbb_root=None, tbb_include=None, tbb_link=None): if platform.system() == 'Darwin': os.environ["MACOSX_DEPLOYMENT_TARGET"] = "10.12" -version = '2.2.0' +version = '2.3.0' # Read README for PyPI, fallback to short description if it fails. desc = 'Powerful, efficient trajectory analysis in scientific Python.'