Skip to content

Commit 49c85c6

Browse files
author
Yoav Schatzberg
committed
*Bumping Version to 1.1.2.0
1 parent cdb1a7f commit 49c85c6

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

CHANGES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.1.2.0 (2015-02-04)
2+
====================
3+
* Added Unlabel functionaly
4+
* Minor bug fixes.
5+
16
1.1.1.0 (2014-09-3)
27
===================
38
* Added timeout parameter to track, score, and label functions.

README.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,10 @@ Here's an example:
8383
8484
# Label the user with user_id 23056 as Bad with all optional fields
8585
response = client.label(user_id,{ "$is_bad" : True, "$reasons" : ["$chargeback", ], "$description" : "Chargeback issued", "$source" : "Manual Review", "$analyst" : "analyst.name@your_domain.com"})
86-
86+
87+
# Remove a label from a user with user_id 23056
88+
response = client.unlabel(user_id)
89+
8790
Testing
8891
=======
8992

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
setup(
2020
name='Sift',
2121
description='Python bindings for Sift Science\'s API',
22-
version='1.1.1.0', # NB: must be kept in sync with sift/version.py
22+
version='1.1.2.0', # NB: must be kept in sync with sift/version.py
2323
url='https://siftscience.com',
2424

2525
author='Sift Science',

sift/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# NB: Be sure to keep in sync w/ setup.py
2-
VERSION = '1.1.1.0'
2+
VERSION = '1.1.2.0'
33
API_VERSION = '203'

0 commit comments

Comments
 (0)