Skip to content

Commit

Permalink
Merge pull request #580 from woutervb/versionbump
Browse files Browse the repository at this point in the history
Update the version to v0.21.1

Included a update of the history and blocked out a python 3.5 incompatible version of more-itertools
  • Loading branch information
Wouter van Bommel authored Nov 10, 2021
2 parents f45f03c + a87a04b commit 9042d21
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 5 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.21.0
current_version = 0.21.1
commit = True
tag = True

Expand Down
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
0.21.1 (2021-11-10)
-------------------

* Add a fix to compare LogRecords that don't contain the extra field i.e
caused by log entries generated before talisker is initalized.

0.21.0 (2021-09-24)
-------------------

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.0'
version = '0.21.1'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 2 additions & 0 deletions requirements.tests.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# these are pinned for repeatability, but updated by pyup.io to be latest
pytest==4.6.9 # pyup: <5.0.0
more-itertools<8.11.0;python_version<"3.6"
more-itertools;python_version>="3.6"
freezegun==0.3.14
pytest-cov==2.8.1
pytest-postgresql==1.4.1 # pypup: <2.0
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.0
version = 0.21.1
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 @@ -204,6 +204,6 @@
],
test_suite='tests',
url='https://github.com/canonical-ols/talisker',
version='0.21.0',
version='0.21.1',
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.0'
__version__ = '0.21.1'
__all__ = [
'initialise',
'get_config',
Expand Down

0 comments on commit 9042d21

Please sign in to comment.