From 565a88c19b397824a9348d2670a01606bbe5976f Mon Sep 17 00:00:00 2001 From: Matt Swain Date: Tue, 5 Jan 2016 23:04:41 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.0.3=20=E2=86=92=200.0.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/source/conf.py | 4 ++-- docs/source/guide/install.rst | 4 ++-- molvs/__init__.py | 2 +- setup.py | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 32ff0f3..8a9349b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.3 +current_version = 0.0.4 commit = True tag = True diff --git a/docs/source/conf.py b/docs/source/conf.py index 3d0541e..080d3b4 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -50,9 +50,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 = '0.0.3' +version = '0.0.4' # The full version, including alpha/beta/rc tags. -release = '0.0.3' +release = '0.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/install.rst b/docs/source/guide/install.rst index 65b66b3..bff0b20 100644 --- a/docs/source/guide/install.rst +++ b/docs/source/guide/install.rst @@ -40,8 +40,8 @@ Option 2: Download the latest release Alternatively, `download the latest release`_ manually and install yourself:: - tar -xzvf MolVS-0.0.3.tar.gz - cd MolVS-0.0.3 + tar -xzvf MolVS-0.0.4.tar.gz + cd MolVS-0.0.4 python setup.py install The setup.py command will install MolVS in your `site-packages` folder so it is automatically available to all your diff --git a/molvs/__init__.py b/molvs/__init__.py index 38268fc..1c877e6 100644 --- a/molvs/__init__.py +++ b/molvs/__init__.py @@ -20,7 +20,7 @@ __title__ = 'MolVS' -__version__ = '0.0.3' +__version__ = '0.0.4' __author__ = 'Matt Swain' __email__ = 'm.swain@me.com' __license__ = 'MIT' diff --git a/setup.py b/setup.py index 8238923..9faa1d6 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name='MolVS', - version='0.0.3', + version='0.0.4', author='Matt Swain', author_email='m.swain@me.com', license='MIT',