From 982b600089e551129762f17063af37d1c5c55199 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Fri, 8 Feb 2019 21:39:50 -0500 Subject: [PATCH] Bump up to version 1.0.0. --- doc/source/conf.py | 4 ++-- freud/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index eef39d6c5..bb7ad26f5 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -66,8 +66,8 @@ # built documents. # # version and release are set the same for this package. -version = '0.11.4' -release = '0.11.4' +version = '1.0.0' +release = '1.0.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 59517d29a..3a3baf0cb 100644 --- a/freud/__init__.py +++ b/freud/__init__.py @@ -15,4 +15,4 @@ from . import pmft from . import voronoi -__version__ = '0.11.4' +__version__ = '1.0.0' diff --git a/setup.cfg b/setup.cfg index 15ac2f47e..a0ee3d03d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.4 +current_version = 1.0.0 commit = True tag = True message = Bump up to version {new_version}. diff --git a/setup.py b/setup.py index 75116ac30..29d57c0d3 100644 --- a/setup.py +++ b/setup.py @@ -372,7 +372,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 = '0.11.4' +version = '1.0.0' # Read README for PyPI, fallback to short description if it fails. desc = 'Perform various analyses of particle simulations.'