From 5452809a7b4a0d94c2b1e104c3c34d55cb1142ea Mon Sep 17 00:00:00 2001 From: Matt Swain Date: Wed, 29 Mar 2017 20:15:34 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.4=20=E2=86=92=201.0.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- chemspipy/__init__.py | 2 +- docs/source/conf.py | 4 ++-- docs/source/guide/advanced.rst | 2 +- docs/source/guide/install.rst | 4 ++-- setup.py | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 31eac88..4a15519 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.4 +current_version = 1.0.5 commit = True tag = True diff --git a/chemspipy/__init__.py b/chemspipy/__init__.py index 7b350cc..b018155 100644 --- a/chemspipy/__init__.py +++ b/chemspipy/__init__.py @@ -16,7 +16,7 @@ __author__ = 'Matt Swain' __email__ = 'm.swain@me.com' -__version__ = '1.0.4' +__version__ = '1.0.5' __license__ = 'MIT' diff --git a/docs/source/conf.py b/docs/source/conf.py index 843312f..7d406ad 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -48,9 +48,9 @@ # The version info for the project you're documenting, acts as replacement for |version| and |release|, also used in # various other places throughout the built documents. # The short X.Y version. -version = '1.0.4' +version = '1.0.5' # The full version, including alpha/beta/rc tags. -release = '1.0.4' +release = '1.0.5' # The language for content autogenerated by Sphinx. Refer to documentation for a list of supported languages. #language = None diff --git a/docs/source/guide/advanced.rst b/docs/source/guide/advanced.rst index 2dfc269..b68ef1f 100644 --- a/docs/source/guide/advanced.rst +++ b/docs/source/guide/advanced.rst @@ -27,7 +27,7 @@ You can specify a custom User Agent through ChemSpiPy through the optional ``use class:: >>> from chemspipy import ChemSpider - >>> cs = ChemSpider('', user_agent='My program 1.3, ChemSpiPy 1.0.4, Python 2.7') + >>> cs = ChemSpider('', user_agent='My program 1.3, ChemSpiPy 1.0.5, Python 2.7') Logging ------- diff --git a/docs/source/guide/install.rst b/docs/source/guide/install.rst index 9cdf5a6..37509f3 100644 --- a/docs/source/guide/install.rst +++ b/docs/source/guide/install.rst @@ -27,8 +27,8 @@ Option 2: Download the latest release Alternatively, `download the latest release`_ manually and install yourself:: - tar -xzvf ChemSpiPy-1.0.4.tar.gz - cd ChemSpiPy-1.0.4 + tar -xzvf ChemSpiPy-1.0.5.tar.gz + cd ChemSpiPy-1.0.5 python setup.py install The setup.py command will install ChemSpiPy in your `site-packages` folder so it is automatically available to all your diff --git a/setup.py b/setup.py index 0d82e39..6a6b373 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='ChemSpiPy', - version='1.0.4', + version='1.0.5', author='Matt Swain', author_email='m.swain@me.com', license='MIT',