Skip to content

Commit

Permalink
Bumps version.
Browse files Browse the repository at this point in the history
Signed-off-by: Kouhei Maeda <mkouhei@palmtb.net>
  • Loading branch information
mkouhei committed Apr 23, 2016
1 parent fb9cefa commit 4162b60
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions docs/source/CHANGELOG.rst
@@ -1,6 +1,11 @@
ChangeLog
=========

0.1.2 (2016-04-23)
------------------

* Fixes setup.py version.

0.1.1 (2016-04-23)
------------------

Expand Down
2 changes: 1 addition & 1 deletion pguard.py
Expand Up @@ -2,7 +2,7 @@
"""Guard like Haskell for Python."""


__version__ = '0.1.1'
__version__ = '0.1.2'


def guard_cl(statement, condition=None):
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -5,6 +5,7 @@
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
from pguard import __version__

class Tox(TestCommand):
user_options = [('tox-args=', 'a', 'Arguments to pass to tox')]
Expand Down Expand Up @@ -69,7 +70,7 @@ def read_content(filepath):
_file.write('\n'.join(extras_require.get('reST')))

setup(name='pguard',
version='0.1.0',
version=__version__,
description='Guard like Haskell for Python.',
long_description=long_description,
author='Kouhei Maeda',
Expand Down

0 comments on commit 4162b60

Please sign in to comment.