Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Boocock authored and paulboocock committed Oct 12, 2020
1 parent 5fc114d commit a2c50de
Show file tree
Hide file tree
Showing 13 changed files with 23 additions and 15 deletions.
7 changes: 7 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Version 0.8.4 (2020-10-10)
--------------------------
Fix incompatible versions of greenlet and gevent (closes #236)
Update build to Active Python Releases (closes #237)
Add Snyk monitoring (closes #238)
Update Copyright notices to 2020 (closes #235)

Version 0.8.3 (2019-06-28)
--------------------------
Fix test_bytelimit test (#227)
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
express or implied. See the Apache License Version 2.0 for the specific
language governing permissions and limitations there under.
Authors: Anuj More, Alex Dean, Fred Blundun
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
License: Apache License Version 2.0
"""
Expand All @@ -33,7 +33,8 @@
authors_list = [
'Anuj More',
'Alexander Dean',
'Fred Blundun'
'Fred Blundun',
'Paul Boocock'
]
authors_str = ', '.join(authors_list)

Expand All @@ -44,7 +45,7 @@

setup(
name='snowplow-tracker',
version='0.8.3',
version='0.8.4',
author=authors_str,
author_email=authors_email_str,
packages=['snowplow_tracker', 'snowplow_tracker.test'],
Expand Down
4 changes: 2 additions & 2 deletions snowplow_tracker/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
express or implied. See the Apache License Version 2.0 for the specific
language governing permissions and limitations there under.
Authors: Anuj More, Alex Dean, Fred Blundun
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
License: Apache License Version 2.0
"""


__version_info__ = (0, 8, 3)
__version_info__ = (0, 8, 4)
__version__ = ".".join(str(x) for x in __version_info__)
__build_version__ = __version__ + ''
2 changes: 1 addition & 1 deletion snowplow_tracker/emitters.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
express or implied. See the Apache License Version 2.0 for the specific
language governing permissions and limitations there under.
Authors: Anuj More, Alex Dean, Fred Blundun
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
License: Apache License Version 2.0
"""
Expand Down
2 changes: 1 addition & 1 deletion snowplow_tracker/payload.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
express or implied. See the Apache License Version 2.0 for the specific
language governing permissions and limitations there under.
Authors: Anuj More, Alex Dean, Fred Blundun
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
License: Apache License Version 2.0
"""
Expand Down
2 changes: 1 addition & 1 deletion snowplow_tracker/redis_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
express or implied. See the Apache License Version 2.0 for the specific
language governing permissions and limitations there under.
Authors: Anuj More, Alex Dean, Fred Blundun
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
License: Apache License Version 2.0
"""
Expand Down
2 changes: 1 addition & 1 deletion snowplow_tracker/self_describing_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
express or implied. See the Apache License Version 2.0 for the specific
language governing permissions and limitations there under.
Authors: Anuj More, Alex Dean, Fred Blundun
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
License: Apache License Version 2.0
"""
Expand Down
2 changes: 1 addition & 1 deletion snowplow_tracker/subject.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
express or implied. See the Apache License Version 2.0 for the specific
language governing permissions and limitations there under.
Authors: Anuj More, Alex Dean, Fred Blundun
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
License: Apache License Version 2.0
"""
Expand Down
2 changes: 1 addition & 1 deletion snowplow_tracker/test/integration/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
express or implied. See the Apache License Version 2.0 for the specific
language governing permissions and limitations there under.
Authors: Anuj More, Alex Dean, Fred Blundun
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
License: Apache License Version 2.0
"""
Expand Down
2 changes: 1 addition & 1 deletion snowplow_tracker/test/unit/test_payload.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
express or implied. See the Apache License Version 2.0 for the specific
language governing permissions and limitations there under.
Authors: Anuj More, Alex Dean, Fred Blundun
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
License: Apache License Version 2.0
"""
Expand Down
2 changes: 1 addition & 1 deletion snowplow_tracker/test/unit/test_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
express or implied. See the Apache License Version 2.0 for the specific
language governing permissions and limitations there under.
Authors: Anuj More, Alex Dean, Fred Blundun
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
License: Apache License Version 2.0
"""
Expand Down
2 changes: 1 addition & 1 deletion snowplow_tracker/timestamp.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
express or implied. See the Apache License Version 2.0 for the specific
language governing permissions and limitations there under.
Authors: Anuj More, Alex Dean, Fred Blundun, Anton Parkhomenko
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock, Anton Parkhomenko
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
License: Apache License Version 2.0
"""
Expand Down
2 changes: 1 addition & 1 deletion snowplow_tracker/tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
express or implied. See the Apache License Version 2.0 for the specific
language governing permissions and limitations there under.
Authors: Anuj More, Alex Dean, Fred Blundun
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
License: Apache License Version 2.0
"""
Expand Down

0 comments on commit a2c50de

Please sign in to comment.