Skip to content

Commit

Permalink
Version Bump 1.5.11
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Oct 27, 2015
1 parent b2b7442 commit 2f56209
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.

## [1.5.11] - 2015-10-27 ##

### Fixed ###
- ASM Global Suppressions [POST]

## [1.5.10] - 2015-10-26 ##

### Added ###
Expand Down
1 change: 1 addition & 0 deletions sendgrid/resources/asm_global_suppressions.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ def get(self, email=None):

# Add an email to the global suppressions group
def post(self, emails=None):
self._endpoint = self._base_endpoint
data = {}
data["recipient_emails"] = emails
return self.client.post(self, data)
Expand Down
2 changes: 1 addition & 1 deletion sendgrid/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (1, 5, 10)
version_info = (1, 5, 11)
__version__ = '.'.join(str(v) for v in version_info)

0 comments on commit 2f56209

Please sign in to comment.