Skip to content

Commit

Permalink
Bump version: 1.2.0 → 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Mar 13, 2019
1 parent ebdfad7 commit 152b4af
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.2.0
current_version = 1.3.0
commit = True
tag = True

Expand All @@ -18,3 +18,4 @@ replace = version = release = '{new_version}'
[bumpversion:file:src/remote_pdb.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'

4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -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 = ['.']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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 <https://pypi.python.org/pypi/pdbx>`_.',
Expand Down
2 changes: 1 addition & 1 deletion src/remote_pdb.py
Expand Up @@ -8,7 +8,7 @@
import sys
from pdb import Pdb

__version__ = '1.2.0'
__version__ = '1.3.0'

PY3 = sys.version_info[0] == 3

Expand Down

0 comments on commit 152b4af

Please sign in to comment.