Skip to content

Commit

Permalink
Bump version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanlloyd committed Nov 19, 2018
1 parent 851cc36 commit 33c61f8
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.0.1] - 2018-11-19
### Fixed
- Updated requests version to include fix for CVE-2018-18074

## [1.0.0] - 2018-07-31
### Added
- Changelog for GA release
1 change: 1 addition & 0 deletions RELEASE_PROCESS.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ password = <password is in LastPass>
### Create release commit
- Update all references to old version (e.g. in setup.py)
- Commit changes with message "Bump version to x.y.z"
- Update Changelog
- Push changes
- Create Github release
### Build package
Expand Down
2 changes: 1 addition & 1 deletion pusher_push_notifications/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import requests
import six

SDK_VERSION = '1.0.0'
SDK_VERSION = '1.0.1'
INTEREST_MAX_LENGTH = 164
INTEREST_REGEX = re.compile('^(_|-|=|@|,|\\.|;|[A-Z]|[a-z]|[0-9])*$')
MAX_NUMBER_OF_INTERESTS = 100
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
six==1.10.0
requests==2.20.0
requests==2.20.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from codecs import open
from os import path

__version__ = '1.0.0'
__version__ = '1.0.1'

here = path.abspath(path.dirname(__file__))

Expand Down
2 changes: 1 addition & 1 deletion tests/test_push_notifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def test_publish_should_make_correct_http_request(self):
'content-type': 'application/json',
'content-length': '69',
'authorization': 'Bearer SECRET_KEY',
'x-pusher-library': 'pusher-push-notifications-python 1.0.0',
'x-pusher-library': 'pusher-push-notifications-python 1.0.1',
'host': 'instance_id.pushnotifications.pusher.com',
},
)
Expand Down

0 comments on commit 33c61f8

Please sign in to comment.