From 398c553d32126377501fd626715971f4ed4658a7 Mon Sep 17 00:00:00 2001 From: Mike Shoup Date: Wed, 2 Jan 2019 14:28:51 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.0.1=20=E2=86=92=200.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/conf.py | 4 ++-- setup.cfg | 15 +++++++++------ setup.py | 2 +- src/synthale/__init__.py | 2 +- 4 files changed, 13 insertions(+), 10 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 62c6d65..77d7d2a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,9 +55,9 @@ author = 'Mike Shoup' # built documents. # # The short X.Y version. -version = '0.0.1' +version = '0.0.2' # The full version, including alpha/beta/rc tags. -release = '0.0.1' +release = '0.0.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index 7a0e120..09869ca 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,10 @@ +[bumpversion] +current_version = 0.0.2 +commit = True +tag = True + [aliases] -test=pytest +test = pytest [tool:pytest] testpaths = tests @@ -14,11 +19,9 @@ show-source = True ignore = W504,D105 count = True -[bumpversion] -current_version = 0.0.1 -commit = True -tag = True - [bumpversion:file:setup.py] + [bumpversion:file:src/synthale/__init__.py] + [bumpversion:file:docs/conf.py] + diff --git a/setup.py b/setup.py index 7bf3f83..f3afc90 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ install_requires = [ setup( name='synthale', - version='0.0.1', + version='0.0.2', url='https://github.com/shouptech/synthale', author='Mike Shoup', author_email='mike@shoup.io', diff --git a/src/synthale/__init__.py b/src/synthale/__init__.py index eb9694c..3c105a9 100644 --- a/src/synthale/__init__.py +++ b/src/synthale/__init__.py @@ -15,4 +15,4 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -VERSION = '0.0.1' +VERSION = '0.0.2'