Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 4.2.1 #41

Merged
merged 2 commits into from
Dec 19, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# createsend-python history

## v4.2.1 - 19 Dec, 2016

* Decode JSON API responses using UTF-8: ([#38](https://github.com/campaignmonitor/createsend-python/pull/38))

## v4.2.0 - 10 Oct, 2016

* Support Python 3: ([#27](https://github.com/campaignmonitor/createsend-python/pull/27))
Expand Down
2 changes: 1 addition & 1 deletion createsend/createsend.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import simplejson as json
from .utils import VerifiedHTTPSConnection, json_to_py, get_faker

__version_info__ = ('4', '2', '0')
__version_info__ = ('4', '2', '1')
__version__ = '.'.join(__version_info__)

class CreateSendError(Exception):
Expand Down