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
bmatv committed Feb 17, 2021
1 parent 3e0986a commit 6a18b4b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .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 All @@ -22,4 +22,3 @@ search =
[bumpversion:file:src/unlzw/__init__.py]
search =
__version__ = '{current_version}'

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

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

.. |wheel| image:: https://img.shields.io/pypi/wheel/unlzw.svg
:alt: PyPI Wheel
Expand Down
3 changes: 1 addition & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@
project = 'unlzw'
year = '2017'
author = 'Ionel Cristian Mărieș'
copyright = '{0}, {1}'.format(year, author)
version = release = '0.1.1'
copyright = '{0}, {1}'.format(year, author)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 @@ -32,7 +32,7 @@ def read(*names, **kwargs):

setup(
name='unlzw',
version='0.1.1',
version='0.1.2',
license='BSD 3-Clause License',
description="Bindings for Mark Adler's unlzw library.",
long_description='%s\n%s' % (
Expand Down
2 changes: 1 addition & 1 deletion src/unlzw/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.1.1'
__version__ = '0.1.2'

from ._unlzw import ffi as _ffi
from ._unlzw import lib as _lib
Expand Down

0 comments on commit 6a18b4b

Please sign in to comment.