From ebb42d14aa4a3000733ddce99e816d504bacba26 Mon Sep 17 00:00:00 2001 From: Matt Swain Date: Mon, 15 Sep 2014 13:27:19 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.0=20=E2=86=92=201.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 3 ++- 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, 9 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1dcce0f..776b14e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 commit = True tag = True @@ -12,3 +12,4 @@ tag = True [bumpversion:file:docs/source/guide/advanced.rst] [bumpversion:file:docs/source/conf.py] + diff --git a/chemspipy/__init__.py b/chemspipy/__init__.py index fe21087..76b00be 100644 --- a/chemspipy/__init__.py +++ b/chemspipy/__init__.py @@ -16,7 +16,7 @@ __author__ = 'Matt Swain' __email__ = 'm.swain@me.com' -__version__ = '1.0.0' +__version__ = '1.0.1' __license__ = 'MIT' diff --git a/docs/source/conf.py b/docs/source/conf.py index 851db5f..23831c0 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.0' +version = '1.0.1' # The full version, including alpha/beta/rc tags. -release = '1.0.0' +release = '1.0.1' # 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 0664745..b1e3c85 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.0, Python 2.7') + >>> cs = ChemSpider('', user_agent='My program 1.3, ChemSpiPy 1.0.1, Python 2.7') Logging ------- diff --git a/docs/source/guide/install.rst b/docs/source/guide/install.rst index 31ed999..0342e8e 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.0.tar.gz - cd ChemSpiPy-1.0.0 + tar -xzvf ChemSpiPy-1.0.1.tar.gz + cd ChemSpiPy-1.0.1 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 2d7f00b..ab54b25 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='ChemSpiPy', - version='1.0.0', + version='1.0.1', author='Matt Swain', author_email='m.swain@me.com', license='MIT',