Skip to content

Commit

Permalink
Merge pull request #572 from woutervb/prepare_0_20_0_release
Browse files Browse the repository at this point in the history
Bump version: 0.19.0 → 0.20.0
  • Loading branch information
Wouter van Bommel committed Sep 9, 2021
2 parents d594467 + ebaa6a1 commit 394402d
Show file tree
Hide file tree
Showing 7 changed files with 10 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.19.0
current_version = 0.20.0
commit = True
tag = True

Expand Down
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ a common operational platform for your python microservices.
It integrates with many standard python libraries to give you out-of-the-box
logging, metrics, error reporting, status urls and more.

Python version support
----------------------

This release of talisker (0.20.0) will be the last to support python 2.7

Quick Start
-----------
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
# for |version| and |release|, also used in various other places throughout
# the built documents.
# The short X.Y version.
version = '0.19.0'
version = '0.20.0'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ filterwarnings = ignore

[metadata]
name = talisker
version = 0.19.0
version = 0.20.0
description = A common WSGI stack
long_description = file: README.rst
author = Simon Davy
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,6 @@
],
test_suite='tests',
url='https://github.com/canonical-ols/talisker',
version='0.19.0',
version='0.20.0',
zip_safe=False,
)
2 changes: 1 addition & 1 deletion talisker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
request_timeout,
)

__version__ = '0.19.0'
__version__ = '0.20.0'
__all__ = [
'initialise',
'get_config',
Expand Down
2 changes: 1 addition & 1 deletion tests/test_gunicorn.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def stats():
sleep_factor = 1
if os.environ.get('CI') == 'true':
# travis is slow
sleep_factor = 10
sleep_factor = 20

with server:
# forking can be really slow on travis, so make sure *all* the workers
Expand Down

0 comments on commit 394402d

Please sign in to comment.