Skip to content

Commit 6246b0f

Browse files
committed
Merge pull request intercom#82 from jkeyes/release-2.0.beta
Release 2.0.beta
2 parents 8c2ba02 + 1a7cfdd commit 6246b0f

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

CHANGES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Changelog
33
=========
44

5-
* 2.0.beta (not yet released)
5+
* 2.0.beta
66
* Fixed `UnboundLocalError` in `Request.parse_body`. (`#72 <https://github.com/jkeyes/python-intercom/issues/72>`_)
77
* Added support for replies with an empty body. (`#72 <https://github.com/jkeyes/python-intercom/issues/72>`_)
88
* Fixed a bug in identifying changed attributes when creating new resources. (`#77 <https://github.com/jkeyes/python-intercom/issues/77>`_)

intercom/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import six
2727
import time
2828

29-
__version__ = '2.0.alpha'
29+
__version__ = '2.0.beta'
3030

3131

3232
RELATED_DOCS_TEXT = "See https://github.com/jkeyes/python-intercom \

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
classifiers=[],
3232
packages=find_packages(),
3333
include_package_data=True,
34-
install_requires=["requests", "inflection", "certifi"],
34+
install_requires=["requests", "inflection", "certifi", "six"],
3535
zip_safe=False
3636
)

tests/integration/issues/test_72.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,4 @@ def test(self):
2121
'created_at': int(time.time()),
2222
'email': 'me@example.com'
2323
}
24-
print data
2524
Event.create(**data)

0 commit comments

Comments
 (0)