Skip to content

Commit 76e7538

Browse files
committed
Merge branch 'feature/0.7.2'
2 parents 00e7515 + d12b622 commit 76e7538

4 files changed

Lines changed: 11 additions & 7 deletions

File tree

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ python:
99
- "3.3"
1010
# command to install dependencies
1111
install:
12-
- "pip install python-dateutil"
1312
- "pip install httmock"
1413
- "pip install freezegun"
15-
- "pip install nose"
1614
- "pip install coveralls"
17-
- "pip install -r requirements.txt"
15+
- "python setup.py install"
1816
# command to run tests
1917
script:
2018
nosetests --with-coverage --cover-package=snowplow_tracker

CHANGES.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
Version 0.7.0 (2015-08-11)
1+
Version 0.7.2 (2015-08-16)
2+
--------------------------
3+
Corrected contract typo in the docstring of AsyncEmitter's constructor (#147)
4+
Ensured that Travis uses latest versions of dependencies (#149)
5+
Fixed 0.7.0 reference for 0.7.1 in CHANGELOG (#146)
6+
7+
Version 0.7.1 (2015-08-11)
28
--------------------------
39
Ensured synchronous flush always waits for the task queue to empty (#142)
410

snowplow_tracker/_version.py

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

2222

23-
__version_info__ = (0, 7, 1)
23+
__version_info__ = (0, 7, 2)
2424
__version__ = ".".join(str(x) for x in __version_info__)

snowplow_tracker/emitters.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,8 @@ def __init__(
281281
2) If method is "post": The unsent data in string form;
282282
If method is "get": An array of dictionaries corresponding to the unsent events' payloads
283283
:type on_failure: function | None
284-
:param thread_count Number of worker threads to use for HTTP requests
285-
:type thread_count int
284+
:param thread_count: Number of worker threads to use for HTTP requests
285+
:type thread_count: int
286286
"""
287287
super(AsyncEmitter, self).__init__(endpoint, protocol, port, method, buffer_size, on_success, on_failure)
288288
self.queue = Queue()

0 commit comments

Comments
 (0)