From a2c50de16afa32a6fa4ee46d83c2be2b70dbee44 Mon Sep 17 00:00:00 2001 From: Paul Boocock Date: Sat, 10 Oct 2020 13:28:41 +0100 Subject: [PATCH] Prepare for release --- CHANGES.txt | 7 +++++++ setup.py | 7 ++++--- snowplow_tracker/_version.py | 4 ++-- snowplow_tracker/emitters.py | 2 +- snowplow_tracker/payload.py | 2 +- snowplow_tracker/redis_worker.py | 2 +- snowplow_tracker/self_describing_json.py | 2 +- snowplow_tracker/subject.py | 2 +- snowplow_tracker/test/integration/test_integration.py | 2 +- snowplow_tracker/test/unit/test_payload.py | 2 +- snowplow_tracker/test/unit/test_tracker.py | 2 +- snowplow_tracker/timestamp.py | 2 +- snowplow_tracker/tracker.py | 2 +- 13 files changed, 23 insertions(+), 15 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index d302f940..6fba3e20 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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) diff --git a/setup.py b/setup.py index 0e28a1f1..162c8966 100644 --- a/setup.py +++ b/setup.py @@ -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 """ @@ -33,7 +33,8 @@ authors_list = [ 'Anuj More', 'Alexander Dean', - 'Fred Blundun' + 'Fred Blundun', + 'Paul Boocock' ] authors_str = ', '.join(authors_list) @@ -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'], diff --git a/snowplow_tracker/_version.py b/snowplow_tracker/_version.py index e70ac968..42e66e0d 100644 --- a/snowplow_tracker/_version.py +++ b/snowplow_tracker/_version.py @@ -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__ + '' diff --git a/snowplow_tracker/emitters.py b/snowplow_tracker/emitters.py index dce16fb2..aed3f9a9 100644 --- a/snowplow_tracker/emitters.py +++ b/snowplow_tracker/emitters.py @@ -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 """ diff --git a/snowplow_tracker/payload.py b/snowplow_tracker/payload.py index 789a3019..598c755b 100644 --- a/snowplow_tracker/payload.py +++ b/snowplow_tracker/payload.py @@ -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 """ diff --git a/snowplow_tracker/redis_worker.py b/snowplow_tracker/redis_worker.py index 8103767c..05d9e578 100644 --- a/snowplow_tracker/redis_worker.py +++ b/snowplow_tracker/redis_worker.py @@ -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 """ diff --git a/snowplow_tracker/self_describing_json.py b/snowplow_tracker/self_describing_json.py index 7fd5f5e0..30f65e5e 100644 --- a/snowplow_tracker/self_describing_json.py +++ b/snowplow_tracker/self_describing_json.py @@ -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 """ diff --git a/snowplow_tracker/subject.py b/snowplow_tracker/subject.py index 8f2438b8..04881102 100644 --- a/snowplow_tracker/subject.py +++ b/snowplow_tracker/subject.py @@ -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 """ diff --git a/snowplow_tracker/test/integration/test_integration.py b/snowplow_tracker/test/integration/test_integration.py index dfc2a954..bcd8dfbb 100644 --- a/snowplow_tracker/test/integration/test_integration.py +++ b/snowplow_tracker/test/integration/test_integration.py @@ -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 """ diff --git a/snowplow_tracker/test/unit/test_payload.py b/snowplow_tracker/test/unit/test_payload.py index 58f37c08..384d6631 100644 --- a/snowplow_tracker/test/unit/test_payload.py +++ b/snowplow_tracker/test/unit/test_payload.py @@ -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 """ diff --git a/snowplow_tracker/test/unit/test_tracker.py b/snowplow_tracker/test/unit/test_tracker.py index 73a81c78..97b8975a 100644 --- a/snowplow_tracker/test/unit/test_tracker.py +++ b/snowplow_tracker/test/unit/test_tracker.py @@ -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 """ diff --git a/snowplow_tracker/timestamp.py b/snowplow_tracker/timestamp.py index d0343853..47e39173 100644 --- a/snowplow_tracker/timestamp.py +++ b/snowplow_tracker/timestamp.py @@ -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 """ diff --git a/snowplow_tracker/tracker.py b/snowplow_tracker/tracker.py index 0d870095..ffbcdffa 100644 --- a/snowplow_tracker/tracker.py +++ b/snowplow_tracker/tracker.py @@ -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 """