Skip to content

Commit

Permalink
Bump version: 0.1.1 → 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
janluke committed Dec 16, 2018
1 parent ed897ef commit 346e960
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.1
current_version = 0.1.2
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ Overview
:alt: PyPI Package latest release
:target: https://pypi.org/project/reagex/

.. |commits-since| image:: https://img.shields.io/github/commits-since/janluke/python-reagex/v0.1.1.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/janluke/python-reagex/v0.1.2.svg
:alt: Commits since latest release
:target: https://github.com/janluke/python-reagex/compare/v0.1.1...master
:target: https://github.com/janluke/python-reagex/compare/v0.1.2...master

.. |wheel| image:: https://img.shields.io/pypi/wheel/reagex.svg
:alt: PyPI Wheel
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
year = '2018'
author = 'Gianluca Gippetto'
copyright = '{0}, {1}'.format(year, author)
version = release = '0.1.1'
version = release = '0.1.2'

pygments_style = 'trac'
templates_path = ['.']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def read(*names, **kwargs):

setup(
name='reagex',
version='0.1.1',
version='0.1.2',
license='BSD 2-Clause License',
description='Utility functions for writing readable regular expressions in a hierarchical way',
long_description='%s\n%s' % (
Expand Down
2 changes: 1 addition & 1 deletion src/reagex/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .reagex import reagex, repeated

__version__ = '0.1.1'
__version__ = '0.1.2'
__all__ = ['reagex', 'repeated']

0 comments on commit 346e960

Please sign in to comment.