Skip to content

Commit 47659e6

Browse files
committed
Prepared for release
1 parent 9571ad2 commit 47659e6

14 files changed

Lines changed: 47 additions & 45 deletions

CHANGES.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Version 0.8.3 (2019-06-28)
2+
--------------------------
3+
Fix test_bytelimit test (#227)
4+
Initialize Celery in CeleryEmitter (#226)
5+
Allow non ascii characters to be encoded using Base64 (#194)
6+
Allow empty strings in string_or_none contract (#184)
7+
Fix on_failure param docstring description (#225)
8+
Bump max version requirement of redis (#223)
9+
Remove Vagrant & Ansible (#222)
10+
111
Version 0.8.2 (2018-12-01)
212
--------------------------
313
Fix date for 0.8.0 release in CHANGELOG (#183)

README.rst

Lines changed: 12 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
======================================================
22
Python Analytics for Snowplow
33
======================================================
4-
.. image:: https://travis-ci.org/snowplow/snowplow-python-tracker.png?branch=master
4+
.. image:: https://travis-ci.org/snowplow/snowplow-python-tracker.svg?branch=master
55
:alt: Build Status
66
:target: https://travis-ci.org/snowplow/snowplow-python-tracker
7-
.. image:: https://badge.fury.io/py/snowplow-tracker.png
7+
.. image:: https://badge.fury.io/py/snowplow-tracker.svg
88
:target: http://badge.fury.io/py/snowplow-tracker
9-
.. image:: https://coveralls.io/repos/snowplow/snowplow-python-tracker/badge.png
10-
:target: https://coveralls.io/r/snowplow/snowplow-python-tracker
9+
.. image:: https://coveralls.io/repos/github/snowplow/snowplow-python-tracker/badge.svg?branch=master
10+
:target: https://coveralls.io/github/snowplow/snowplow-python-tracker?branch=master
1111
.. image:: http://img.shields.io/badge/license-Apache--2-blue.svg?style=flat
1212
:target: http://www.apache.org/licenses/LICENSE-2.0
1313

@@ -46,33 +46,25 @@ Find out more
4646
.. _`Roadmap`: https://github.com/snowplow/snowplow/wiki/Python-Tracker-Roadmap
4747
.. _`Contributing`: https://github.com/snowplow/snowplow/wiki/Python-Tracker-Contributing
4848

49-
Contributing quickstart
49+
Quickstart
5050
#######################
5151

52-
Assuming Git, Vagrant_ and VirtualBox_ are installed:
52+
Assuming pyenv_ is installed
5353

5454
::
5555

5656
host$ git clone git@github.com:snowplow/snowplow-python-tracker.git
57-
host$ vagrant up && vagrant ssh
58-
guest$ cd /vagrant
59-
guest$ ./run-tests.sh deploy
60-
guest$ ./run-tests.sh test
57+
host$ cd snowplow-python-tracker
58+
host$ pyenv install 2.7.15 && pyenv install 3.4.9 && pyenv install 3.5.2 && pyenv install 3.7.1
59+
host$ ./run-tests.sh deploy
60+
host$ ./run-tests.sh test
6161

62-
.. _Vagrant: http://docs.vagrantup.com/v2/installation/index.html
63-
.. _VirtualBox: https://www.virtualbox.org/wiki/Downloads
64-
65-
Publishing
66-
##########
67-
68-
::
69-
70-
host$ vagrant push
62+
.. _pyenv: https://github.com/pyenv/pyenv
7163

7264
Copyright and license
7365
#####################
7466

75-
The Snowplow Python Tracker is copyright 2013-2014 Snowplow Analytics Ltd.
67+
The Snowplow Python Tracker is copyright 2013-2019 Snowplow Analytics Ltd.
7668

7769
Licensed under the `Apache License, Version 2.0`_ (the "License");
7870
you may not use this software except in compliance with the License.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
setup.py
33
4-
Copyright (c) 2013-2014 Snowplow Analytics Ltd. All rights reserved.
4+
Copyright (c) 2013-2019 Snowplow Analytics Ltd. All rights reserved.
55
66
This program is licensed to you under the Apache License Version 2.0,
77
and you may not use this file except in compliance with the Apache License
@@ -15,7 +15,7 @@
1515
language governing permissions and limitations there under.
1616
1717
Authors: Anuj More, Alex Dean, Fred Blundun
18-
Copyright: Copyright (c) 2013-2014 Snowplow Analytics Ltd
18+
Copyright: Copyright (c) 2013-2019 Snowplow Analytics Ltd
1919
License: Apache License Version 2.0
2020
"""
2121

snowplow_tracker/_version.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
_version.py
33
4-
Copyright (c) 2013-2014 Snowplow Analytics Ltd. All rights reserved.
4+
Copyright (c) 2013-2019 Snowplow Analytics Ltd. All rights reserved.
55
66
This program is licensed to you under the Apache License Version 2.0,
77
and you may not use this file except in compliance with the Apache License
@@ -15,11 +15,11 @@
1515
language governing permissions and limitations there under.
1616
1717
Authors: Anuj More, Alex Dean, Fred Blundun
18-
Copyright: Copyright (c) 2013-2016 Snowplow Analytics Ltd
18+
Copyright: Copyright (c) 2013-2019 Snowplow Analytics Ltd
1919
License: Apache License Version 2.0
2020
"""
2121

2222

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

snowplow_tracker/emitters.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
emitters.py
33
4-
Copyright (c) 2013-2014 Snowplow Analytics Ltd. All rights reserved.
4+
Copyright (c) 2013-2019 Snowplow Analytics Ltd. All rights reserved.
55
66
This program is licensed to you under the Apache License Version 2.0,
77
and you may not use this file except in compliance with the Apache License
@@ -15,7 +15,7 @@
1515
language governing permissions and limitations there under.
1616
1717
Authors: Anuj More, Alex Dean, Fred Blundun
18-
Copyright: Copyright (c) 2013-2014 Snowplow Analytics Ltd
18+
Copyright: Copyright (c) 2013-2019 Snowplow Analytics Ltd
1919
License: Apache License Version 2.0
2020
"""
2121

snowplow_tracker/payload.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
payload.py
33
4-
Copyright (c) 2013-2014 Snowplow Analytics Ltd. All rights reserved.
4+
Copyright (c) 2013-2019 Snowplow Analytics Ltd. All rights reserved.
55
66
This program is licensed to you under the Apache License Version 2.0,
77
and you may not use this file except in compliance with the Apache License
@@ -15,7 +15,7 @@
1515
language governing permissions and limitations there under.
1616
1717
Authors: Anuj More, Alex Dean, Fred Blundun
18-
Copyright: Copyright (c) 2013-2014 Snowplow Analytics Ltd
18+
Copyright: Copyright (c) 2013-2019 Snowplow Analytics Ltd
1919
License: Apache License Version 2.0
2020
"""
2121

snowplow_tracker/redis_worker.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
redis_worker.py
33
4-
Copyright (c) 2013-2014 Snowplow Analytics Ltd. All rights reserved.
4+
Copyright (c) 2013-2019 Snowplow Analytics Ltd. All rights reserved.
55
66
This program is licensed to you under the Apache License Version 2.0,
77
and you may not use this file except in compliance with the Apache License
@@ -15,7 +15,7 @@
1515
language governing permissions and limitations there under.
1616
1717
Authors: Anuj More, Alex Dean, Fred Blundun
18-
Copyright: Copyright (c) 2013-2014 Snowplow Analytics Ltd
18+
Copyright: Copyright (c) 2013-2019 Snowplow Analytics Ltd
1919
License: Apache License Version 2.0
2020
"""
2121

snowplow_tracker/self_describing_json.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
self_describing_json.py
33
4-
Copyright (c) 2013-2014 Snowplow Analytics Ltd. All rights reserved.
4+
Copyright (c) 2013-2019 Snowplow Analytics Ltd. All rights reserved.
55
66
This program is licensed to you under the Apache License Version 2.0,
77
and you may not use this file except in compliance with the Apache License
@@ -15,7 +15,7 @@
1515
language governing permissions and limitations there under.
1616
1717
Authors: Anuj More, Alex Dean, Fred Blundun
18-
Copyright: Copyright (c) 2013-2014 Snowplow Analytics Ltd
18+
Copyright: Copyright (c) 2013-2019 Snowplow Analytics Ltd
1919
License: Apache License Version 2.0
2020
"""
2121

snowplow_tracker/subject.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
subject.py
33
4-
Copyright (c) 2013-2014 Snowplow Analytics Ltd. All rights reserved.
4+
Copyright (c) 2013-2019 Snowplow Analytics Ltd. All rights reserved.
55
66
This program is licensed to you under the Apache License Version 2.0,
77
and you may not use this file except in compliance with the Apache License
@@ -15,7 +15,7 @@
1515
language governing permissions and limitations there under.
1616
1717
Authors: Anuj More, Alex Dean, Fred Blundun
18-
Copyright: Copyright (c) 2013-2014 Snowplow Analytics Ltd
18+
Copyright: Copyright (c) 2013-2019 Snowplow Analytics Ltd
1919
License: Apache License Version 2.0
2020
"""
2121

snowplow_tracker/test/integration/test_integration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
test_integration.py
33
4-
Copyright (c) 2013-2014 Snowplow Analytics Ltd. All rights reserved.
4+
Copyright (c) 2013-2019 Snowplow Analytics Ltd. All rights reserved.
55
66
This program is licensed to you under the Apache License Version 2.0,
77
and you may not use this file except in compliance with the Apache License
@@ -15,7 +15,7 @@
1515
language governing permissions and limitations there under.
1616
1717
Authors: Anuj More, Alex Dean, Fred Blundun
18-
Copyright: Copyright (c) 2013-2014 Snowplow Analytics Ltd
18+
Copyright: Copyright (c) 2013-2019 Snowplow Analytics Ltd
1919
License: Apache License Version 2.0
2020
"""
2121

0 commit comments

Comments
 (0)