Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release talisker 0.21.3 #593

Merged
merged 1 commit into from
Jan 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.21.2
current_version = 0.21.3
commit = True
tag = True

Expand Down
7 changes: 4 additions & 3 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Next release
------------
*
0.21.3 (2023-01-11)
-------------------
* Fix spelling of Python 3.5-specific requirements
* Drop the future library

0.21.2 (2022-10-07)
-------------------
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.21.2'
version = '0.21.3'
# 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.21.2
version = 0.21.3
description = A common WSGI stack
long_description = file: README.rst
author = Simon Davy
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@
Python version support
----------------------
This release of talisker (0.20.0) will be the last to support python 2.7
Talisker version >0.20.2 will only support python 3.5, 3.6, 3.8 and 3.10 as they
come with Ubuntu LTS releases.
Talisker 0.20.0 was the last to support Python 2.7.
Talisker version >=0.21.0 only supports Python 3.5, 3.6, 3.8 and 3.10, as
they come with Ubuntu LTS releases.
Quick Start
-----------
Expand Down Expand Up @@ -210,6 +210,6 @@
],
test_suite='tests',
url='https://github.com/canonical-ols/talisker',
version='0.21.2',
version='0.21.3',
zip_safe=False,
)
2 changes: 1 addition & 1 deletion talisker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
request_timeout,
)

__version__ = '0.21.2'
__version__ = '0.21.3'
__all__ = [
'initialise',
'get_config',
Expand Down