From fee2bbbb08eb39bbbe003f835d64e8c0c1688904 Mon Sep 17 00:00:00 2001 From: Matt Swain Date: Mon, 4 Jan 2016 23:43:23 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.1=20=E2=86=92=201.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- cirpy.py | 2 +- docs/source/conf.py | 4 ++-- docs/source/guide/install.rst | 4 ++-- setup.py | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0aa22a8..ca946a2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.1 +current_version = 1.0.2 commit = True tag = True diff --git a/cirpy.py b/cirpy.py index 948fe10..d417485 100644 --- a/cirpy.py +++ b/cirpy.py @@ -33,7 +33,7 @@ __author__ = 'Matt Swain' __email__ = 'm.swain@me.com' -__version__ = '1.0.1' +__version__ = '1.0.2' __license__ = 'MIT' log = logging.getLogger('cirpy') diff --git a/docs/source/conf.py b/docs/source/conf.py index 7b1c044..45ab904 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -46,9 +46,9 @@ # various other places throughout the built documents. # # The short X.Y version. -version = '1.0.1' +version = '1.0.2' # The full version, including alpha/beta/rc tags. -release = '1.0.1' +release = '1.0.2' # The language for content autogenerated by Sphinx. Refer to documentation for a list of supported languages. #language = None diff --git a/docs/source/guide/install.rst b/docs/source/guide/install.rst index 645f2e5..8210e6d 100644 --- a/docs/source/guide/install.rst +++ b/docs/source/guide/install.rst @@ -25,8 +25,8 @@ Option 2: Download the latest release Alternatively, `download the latest release`_ manually and install yourself:: - tar -xzvf CIRpy-1.0.1.tar.gz - cd CIRpy-1.0.1 + tar -xzvf CIRpy-1.0.2.tar.gz + cd CIRpy-1.0.2 python setup.py install The setup.py command will install CIRpy in your `site-packages` folder so it is automatically available to all your diff --git a/setup.py b/setup.py index 36ad907..4b0cf2f 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='CIRpy', - version='1.0.1', + version='1.0.2', author='Matt Swain', author_email='m.swain@me.com', license='MIT',