Skip to content

Commit 29a5c5b

Browse files
committed
Bump to version 1.0.1
1 parent 48087c1 commit 29a5c5b

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
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-10-15
10+
### Fixed
11+
- Accessing property on undefined object on non-json response
12+
913
## [1.0.0] - 2018-07-31
1014
### Added
1115
- Changelog for GA release

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pusher/push-notifications-server",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "NodeJS Server SDK for Pusher Push Notifications",
55
"main": "push-notifications.js",
66
"repository": "https://github.com/pusher/push-notifications-node",

push-notifications.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const https = require('https');
22

3-
const SDK_VERSION = '1.0.0';
3+
const SDK_VERSION = '1.0.1';
44
const INTERESTS_REGEX = new RegExp('^(_|\\-|=|@|,|\\.|;|[A-Z]|[a-z]|[0-9])*$');
55
const INTEREST_STRING_MAX_LENGTH = 164;
66
const INTEREST_ARRAY_MAX_LENGTH = 100;

tests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ describe('PushNotifications Node SDK', () => {
120120
'content-type': 'application/json',
121121
'content-length': 55,
122122
authorization: 'Bearer SECRET_KEY',
123-
'x-pusher-library': 'pusher-push-notifications-node 1.0.0',
123+
'x-pusher-library': 'pusher-push-notifications-node 1.0.1',
124124
host: 'instance_id.pushnotifications.pusher.com'
125125
});
126126
expect(body).to.deep.equal({

0 commit comments

Comments
 (0)