Skip to content

Commit f580ff1

Browse files
committed
Changelog and version number bump.
1 parent d9fdde9 commit f580ff1

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

docs/changelog.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@
22
Changelog
33
=========
44

5+
* 0.2.9
6+
* `unsubscribed_from_emails` attribute added to `User` object. `#15 <https://github.com/jkeyes/python-intercom/pull/15>`_. (https://github.com/sdorazio)
7+
* `last_request_at` parameter supported in `Intercom.create_user`. `#16 <https://github.com/jkeyes/python-intercom/issues/16>`_.
8+
* page, per_page, tag_id, and tag_name parameters support on `Intercom.get_users`. `#17 <https://github.com/jkeyes/python-intercom/issues/17>`_.
59
* 0.2.8
6-
* Added support for tagging #13 <https://github.com/jkeyes/python-intercom/issues/13>`_.
10+
* Added support for tagging `#13 <https://github.com/jkeyes/python-intercom/issues/13>`_.
711
* Now installs into a clean python environment (https://github.com/vrachil) `#12 <https://github.com/jkeyes/python-intercom/issues/12>`_.
812
* Doctest fix.
913
* PEP8 formatting.

intercom/intercom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
1515
"""
1616

17-
__version__ = '0.2.8'
17+
__version__ = '0.2.9'
1818

1919
import functools
2020
import json

intercom/test.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from intercom import Intercom
2+
Intercom.app_id = 'uqg4fg4p'
3+
Intercom.api_key = 'd314ecea83ae73e9e7a5605f3321dd7156bc08bd'
4+
5+
from intercom import User
6+
for user in User.all():
7+
print user.email

0 commit comments

Comments
 (0)