Skip to content

Commit

Permalink
Merge pull request #89 from SparkPost/bump
Browse files Browse the repository at this point in the history
Bump version, update changelog
  • Loading branch information
richleland committed Mar 18, 2016
2 parents e85cf29 + 61d6d74 commit 19cb704
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased][unreleased]

## [1.0.5] - 2016-03-18
### Fixed
- Issue where global Django settings object was being modified, causing mixed emails

## [1.0.4] - 2016-03-10
### Added
- `SPARKPOST_OPTIONS` setting for Django for passing through additional transmission options like `track_opens`, `track_clicks`, and `transactional`
Expand Down Expand Up @@ -61,7 +65,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Metrics class for getting a list of campaigns and domains
- Docs on readthedocs.org

[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.4...HEAD
[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.5...HEAD
[1.0.5]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.4...v1.0.5
[1.0.4]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.3...v1.0.4
[1.0.3]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.2...v1.0.3
[1.0.2]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.1...v1.0.2
Expand Down
6 changes: 4 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# All configuration values have a default; values that are commented out
# serve to show the default.

import datetime
import sys
import os

Expand Down Expand Up @@ -48,8 +49,9 @@
master_doc = 'index'

# General information about the project.
now = datetime.datetime.now()
project = u'python-sparkpost'
copyright = u'2015, Message Systems'
copyright = u'2014-{year}, Message Systems'.format(year=now.year)

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand All @@ -58,7 +60,7 @@
# The short X.Y version.
version = '1.0'
# The full version, including alpha/beta/rc tags.
release = '1.0.4'
release = '1.0.5'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='sparkpost',
version='1.0.4',
version='1.0.5',
author='Message Systems',
author_email='appteam@messagesystems.com',
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion sparkpost/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from .transmissions import Transmissions


__version__ = '1.0.4'
__version__ = '1.0.5'


def get_api_key():
Expand Down

0 comments on commit 19cb704

Please sign in to comment.