Skip to content

Commit a2c50de

Browse files
Paul Boocockpaulboocock
authored andcommitted
Prepare for release
1 parent 5fc114d commit a2c50de

File tree

13 files changed

+23
-15
lines changed

13 files changed

+23
-15
lines changed

CHANGES.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Version 0.8.4 (2020-10-10)
2+
--------------------------
3+
Fix incompatible versions of greenlet and gevent (closes #236)
4+
Update build to Active Python Releases (closes #237)
5+
Add Snyk monitoring (closes #238)
6+
Update Copyright notices to 2020 (closes #235)
7+
18
Version 0.8.3 (2019-06-28)
29
--------------------------
310
Fix test_bytelimit test (#227)

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
express or implied. See the Apache License Version 2.0 for the specific
1515
language governing permissions and limitations there under.
1616
17-
Authors: Anuj More, Alex Dean, Fred Blundun
17+
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
1818
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
1919
License: Apache License Version 2.0
2020
"""
@@ -33,7 +33,8 @@
3333
authors_list = [
3434
'Anuj More',
3535
'Alexander Dean',
36-
'Fred Blundun'
36+
'Fred Blundun',
37+
'Paul Boocock'
3738
]
3839
authors_str = ', '.join(authors_list)
3940

@@ -44,7 +45,7 @@
4445

4546
setup(
4647
name='snowplow-tracker',
47-
version='0.8.3',
48+
version='0.8.4',
4849
author=authors_str,
4950
author_email=authors_email_str,
5051
packages=['snowplow_tracker', 'snowplow_tracker.test'],

snowplow_tracker/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
express or implied. See the Apache License Version 2.0 for the specific
1515
language governing permissions and limitations there under.
1616
17-
Authors: Anuj More, Alex Dean, Fred Blundun
17+
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
1818
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
1919
License: Apache License Version 2.0
2020
"""
2121

2222

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

snowplow_tracker/emitters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
express or implied. See the Apache License Version 2.0 for the specific
1515
language governing permissions and limitations there under.
1616
17-
Authors: Anuj More, Alex Dean, Fred Blundun
17+
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
1818
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
1919
License: Apache License Version 2.0
2020
"""

snowplow_tracker/payload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
express or implied. See the Apache License Version 2.0 for the specific
1515
language governing permissions and limitations there under.
1616
17-
Authors: Anuj More, Alex Dean, Fred Blundun
17+
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
1818
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
1919
License: Apache License Version 2.0
2020
"""

snowplow_tracker/redis_worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
express or implied. See the Apache License Version 2.0 for the specific
1515
language governing permissions and limitations there under.
1616
17-
Authors: Anuj More, Alex Dean, Fred Blundun
17+
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
1818
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
1919
License: Apache License Version 2.0
2020
"""

snowplow_tracker/self_describing_json.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
express or implied. See the Apache License Version 2.0 for the specific
1515
language governing permissions and limitations there under.
1616
17-
Authors: Anuj More, Alex Dean, Fred Blundun
17+
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
1818
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
1919
License: Apache License Version 2.0
2020
"""

snowplow_tracker/subject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
express or implied. See the Apache License Version 2.0 for the specific
1515
language governing permissions and limitations there under.
1616
17-
Authors: Anuj More, Alex Dean, Fred Blundun
17+
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
1818
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
1919
License: Apache License Version 2.0
2020
"""

snowplow_tracker/test/integration/test_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
express or implied. See the Apache License Version 2.0 for the specific
1515
language governing permissions and limitations there under.
1616
17-
Authors: Anuj More, Alex Dean, Fred Blundun
17+
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
1818
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
1919
License: Apache License Version 2.0
2020
"""

snowplow_tracker/test/unit/test_payload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
express or implied. See the Apache License Version 2.0 for the specific
1515
language governing permissions and limitations there under.
1616
17-
Authors: Anuj More, Alex Dean, Fred Blundun
17+
Authors: Anuj More, Alex Dean, Fred Blundun, Paul Boocock
1818
Copyright: Copyright (c) 2013-2020 Snowplow Analytics Ltd
1919
License: Apache License Version 2.0
2020
"""

0 commit comments

Comments
 (0)