Skip to content

Commit

Permalink
Bump version: 1.0.0 → 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mcs07 committed Sep 15, 2014
1 parent ec35f4a commit ebb42d1
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.0
current_version = 1.0.1
commit = True
tag = True

Expand All @@ -12,3 +12,4 @@ tag = True
[bumpversion:file:docs/source/guide/advanced.rst]

[bumpversion:file:docs/source/conf.py]

2 changes: 1 addition & 1 deletion chemspipy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

__author__ = 'Matt Swain'
__email__ = 'm.swain@me.com'
__version__ = '1.0.0'
__version__ = '1.0.1'
__license__ = 'MIT'


Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/source/guide/advanced.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ You can specify a custom User Agent through ChemSpiPy through the optional ``use
class::

>>> from chemspipy import ChemSpider
>>> cs = ChemSpider('<YOUR-SECURITY-TOKEN>', user_agent='My program 1.3, ChemSpiPy 1.0.0, Python 2.7')
>>> cs = ChemSpider('<YOUR-SECURITY-TOKEN>', user_agent='My program 1.3, ChemSpiPy 1.0.1, Python 2.7')

Logging
-------
Expand Down
4 changes: 2 additions & 2 deletions docs/source/guide/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit ebb42d1

Please sign in to comment.