From 231e64aeae8d63cc60272f4acafe90ae6ce639c3 Mon Sep 17 00:00:00 2001 From: Matt Swain Date: Sat, 13 Jun 2015 15:44:24 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.3=20=E2=86=92=201.0.4?= 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 0b81db7..31eac88 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.3 +current_version = 1.0.4 commit = True tag = True diff --git a/chemspipy/__init__.py b/chemspipy/__init__.py index 364250f..7b350cc 100644 --- a/chemspipy/__init__.py +++ b/chemspipy/__init__.py @@ -16,7 +16,7 @@ __author__ = 'Matt Swain' __email__ = 'm.swain@me.com' -__version__ = '1.0.3' +__version__ = '1.0.4' __license__ = 'MIT' diff --git a/docs/source/conf.py b/docs/source/conf.py index b1c09a4..843312f 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.3' +version = '1.0.4' # The full version, including alpha/beta/rc tags. -release = '1.0.3' +release = '1.0.4' # 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 b82a80f..2dfc269 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.3, Python 2.7') + >>> cs = ChemSpider('', user_agent='My program 1.3, ChemSpiPy 1.0.4, Python 2.7') Logging ------- diff --git a/docs/source/guide/install.rst b/docs/source/guide/install.rst index 398be4d..9cdf5a6 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.3.tar.gz - cd ChemSpiPy-1.0.3 + tar -xzvf ChemSpiPy-1.0.4.tar.gz + cd ChemSpiPy-1.0.4 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 a65ee56..b43d1c0 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='ChemSpiPy', - version='1.0.3', + version='1.0.4', author='Matt Swain', author_email='m.swain@me.com', license='MIT',