Skip to content

Commit

Permalink
Bump version: 1.6.0 → 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Jul 23, 2020
1 parent f858da7 commit 6f769cf
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.6.0
current_version = 1.7.0
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -52,9 +52,9 @@ Overview
:alt: Supported implementations
:target: https://pypi.org/project/tblib

.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-tblib/v1.6.0.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-tblib/v1.7.0.svg
:alt: Commits since latest release
:target: https://github.com/ionelmc/python-tblib/compare/v1.6.0...master
:target: https://github.com/ionelmc/python-tblib/compare/v1.7.0...master

.. end-badges
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -22,7 +22,7 @@
year = '2013-2020'
author = 'Ionel Cristian Mărieș'
copyright = '{0}, {1}'.format(year, author)
version = release = '1.6.0'
version = release = '1.7.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='tblib',
version='1.6.0',
version='1.7.0',
license='BSD-2-Clause',
description='Traceback serialization library.',
long_description='%s\n%s' % (
Expand Down
2 changes: 1 addition & 1 deletion src/tblib/__init__.py
Expand Up @@ -16,7 +16,7 @@
if not tb_set_next and not tproxy:
raise ImportError("Cannot use tblib. Runtime not supported.")

__version__ = '1.6.0'
__version__ = '1.7.0'
__all__ = 'Traceback', 'TracebackParseError', 'Frame', 'Code'

PY3 = sys.version_info[0] == 3
Expand Down

0 comments on commit 6f769cf

Please sign in to comment.