Skip to content

Commit 33c61f8

Browse files
committed
Bump version to 1.0.1
1 parent 851cc36 commit 33c61f8

File tree

6 files changed

+9
-4
lines changed

6 files changed

+9
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
## [1.0.1] - 2018-11-19
10+
### Fixed
11+
- Updated requests version to include fix for CVE-2018-18074
12+
913
## [1.0.0] - 2018-07-31
1014
### Added
1115
- Changelog for GA release

RELEASE_PROCESS.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ password = <password is in LastPass>
1515
### Create release commit
1616
- Update all references to old version (e.g. in setup.py)
1717
- Commit changes with message "Bump version to x.y.z"
18+
- Update Changelog
1819
- Push changes
1920
- Create Github release
2021
### Build package

pusher_push_notifications/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import requests
77
import six
88

9-
SDK_VERSION = '1.0.0'
9+
SDK_VERSION = '1.0.1'
1010
INTEREST_MAX_LENGTH = 164
1111
INTEREST_REGEX = re.compile('^(_|-|=|@|,|\\.|;|[A-Z]|[a-z]|[0-9])*$')
1212
MAX_NUMBER_OF_INTERESTS = 100

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
six==1.10.0
2-
requests==2.20.0
2+
requests==2.20.1

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from codecs import open
33
from os import path
44

5-
__version__ = '1.0.0'
5+
__version__ = '1.0.1'
66

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

tests/test_push_notifications.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def test_publish_should_make_correct_http_request(self):
128128
'content-type': 'application/json',
129129
'content-length': '69',
130130
'authorization': 'Bearer SECRET_KEY',
131-
'x-pusher-library': 'pusher-push-notifications-python 1.0.0',
131+
'x-pusher-library': 'pusher-push-notifications-python 1.0.1',
132132
'host': 'instance_id.pushnotifications.pusher.com',
133133
},
134134
)

0 commit comments

Comments
 (0)