From 152b4af3b8da282bbba1fc6b62f85d5cdf70be6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionel=20Cristian=20M=C4=83rie=C8=99?= Date: Wed, 13 Mar 2019 18:48:32 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.2.0=20=E2=86=92=201.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 3 ++- README.rst | 4 ++-- docs/conf.py | 2 +- setup.py | 2 +- src/remote_pdb.py | 2 +- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 82bd082..4c39d7a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.0 +current_version = 1.3.0 commit = True tag = True @@ -18,3 +18,4 @@ replace = version = release = '{new_version}' [bumpversion:file:src/remote_pdb.py] search = __version__ = '{current_version}' replace = __version__ = '{new_version}' + diff --git a/README.rst b/README.rst index fd26e31..cca37ac 100644 --- a/README.rst +++ b/README.rst @@ -43,9 +43,9 @@ Overview :alt: PyPI Package latest release :target: https://pypi.org/project/remote-pdb -.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-remote-pdb/v1.2.0.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-remote-pdb/v1.3.0.svg :alt: Commits since latest release - :target: https://github.com/ionelmc/python-remote-pdb/compare/v1.2.0...master + :target: https://github.com/ionelmc/python-remote-pdb/compare/v1.3.0...master .. |wheel| image:: https://img.shields.io/pypi/wheel/remote-pdb.svg :alt: PyPI Wheel diff --git a/docs/conf.py b/docs/conf.py index 0d29981..316f21f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ year = '2014-2019' author = 'Ionel Cristian Mărieș' copyright = '{0}, {1}'.format(year, author) -version = release = '1.2.0' +version = release = '1.3.0' pygments_style = 'trac' templates_path = ['.'] diff --git a/setup.py b/setup.py index f91d2b9..574479e 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def read(*names, **kwargs): setup( name='remote-pdb', - version='1.2.0', + version='1.3.0', license='BSD 2-Clause License', description='Remote vanilla PDB (over TCP sockets) *done right*: no extras, proper handling around connection ' 'failures and CI. Based on `pdbx `_.', diff --git a/src/remote_pdb.py b/src/remote_pdb.py index 744e1f7..af6363b 100644 --- a/src/remote_pdb.py +++ b/src/remote_pdb.py @@ -8,7 +8,7 @@ import sys from pdb import Pdb -__version__ = '1.2.0' +__version__ = '1.3.0' PY3 = sys.version_info[0] == 3