Skip to content

Commit

Permalink
Version Bump v3.5.0: #233 Allow dict to be passed to add_headers
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Oct 11, 2016
1 parent 2790604 commit 253e004
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ venv/
profile*
register.py
README.txt
temp.py
temp*.py
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.

## [3.5.0] - 2016-10-11 ##
### Added
- Pull #233: [Allow dict to be passed to add_headers](https://github.com/sendgrid/sendgrid-python/pull/233)
- Big thanks to [Navin Pai](https://github.com/navinpai) for the pull request!

## [3.4.0] - 2016-09-02 ##
### Added
- Pull #215
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 = (3, 4, 0)
version_info = (3, 5, 0)
__version__ = '.'.join(str(v) for v in version_info)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def getRequires():
author='Elmer Thomas, Yamil Asusta',
author_email='[email protected]',
url='https://github.com/sendgrid/sendgrid-python/',
packages=find_packages(),
packages=find_packages(exclude=["temp*.py"]),
include_package_data=True,
license='MIT',
description='SendGrid library for Python',
Expand Down

0 comments on commit 253e004

Please sign in to comment.