Skip to content

Commit 253e004

Browse files
Version Bump v3.5.0: #233 Allow dict to be passed to add_headers
1 parent 2790604 commit 253e004

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ venv/
1616
profile*
1717
register.py
1818
README.txt
19-
temp.py
19+
temp*.py

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [3.5.0] - 2016-10-11 ##
5+
### Added
6+
- Pull #233: [Allow dict to be passed to add_headers](https://github.com/sendgrid/sendgrid-python/pull/233)
7+
- Big thanks to [Navin Pai](https://github.com/navinpai) for the pull request!
8+
49
## [3.4.0] - 2016-09-02 ##
510
### Added
611
- Pull #215

sendgrid/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (3, 4, 0)
1+
version_info = (3, 5, 0)
22
__version__ = '.'.join(str(v) for v in version_info)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def getRequires():
2424
author='Elmer Thomas, Yamil Asusta',
2525
author_email='dx@sendgrid.com',
2626
url='https://github.com/sendgrid/sendgrid-python/',
27-
packages=find_packages(),
27+
packages=find_packages(exclude=["temp*.py"]),
2828
include_package_data=True,
2929
license='MIT',
3030
description='SendGrid library for Python',

0 commit comments

Comments
 (0)