Skip to content

Commit 8fc7f1e

Browse files
committed
Prepare for release
1 parent 47de923 commit 8fc7f1e

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGES.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Version 0.9.1 (2021-10-26)
2+
--------------------------
3+
Update python versions in run-tests script (#256)
4+
Fix pycontracts incompatibility with pyparsing v3 (#255)
5+
16
Version 0.9.0 (2021-04-23)
27
--------------------------
38
Fix items default value issue in track_ecommerce_transaction (#252)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
setup(
4747
name='snowplow-tracker',
48-
version='0.9.0',
48+
version='0.9.1',
4949
author=authors_str,
5050
author_email=authors_email_str,
5151
packages=['snowplow_tracker', 'snowplow_tracker.test', 'snowplow_tracker.redis', 'snowplow_tracker.celery'],

snowplow_tracker/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
"""
2121

2222

23-
__version_info__ = (0, 9, 0)
23+
__version_info__ = (0, 9, 1)
2424
__version__ = ".".join(str(x) for x in __version_info__)
2525
__build_version__ = __version__ + ''

0 commit comments

Comments
 (0)