Skip to content

Commit 42350e5

Browse files
committed
Prep for 0.2.6 intercomgh-8
1 parent 31d3307 commit 42350e5

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

docs/changelog.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
Changelog
33
=========
44

5+
* 0.2.6
6+
* Support for delete user.
57
* 0.2.5
68
* Consistent version numbering (docs and code).
79
* 0.2.4

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = '0.2.5'
54+
version = '0.2.6'
5555
# The full version, including alpha/beta/rc tags.
5656
release = version
5757

intercom/intercom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def _call(cls, method, url, params=None):
7575
""" Construct an API request, send it to the API, and parse the response. """
7676

7777
req_params = {}
78-
headers = { 'User-Agent': 'python-intercom/0.2.5', 'Accept': 'application/json' }
78+
headers = { 'User-Agent': 'python-intercom/0.2.6', 'Accept': 'application/json' }
7979
if method in ('POST', 'PUT', 'DELETE'):
8080
headers['content-type'] = 'application/json'
8181
req_params['data'] = json.dumps(params)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from setuptools import setup
99

1010
setup(name="python-intercom",
11-
version='0.2.5',
11+
version='0.2.6',
1212
description="Intercom API wrapper",
1313
long_description=open('README').read(),
1414
author="John Keyes",

0 commit comments

Comments
 (0)