Skip to content

Commit

Permalink
Merge pull request #17 from pusher/release
Browse files Browse the repository at this point in the history
Bump version to 1.0.0
  • Loading branch information
jonathanlloyd authored Jul 31, 2018
2 parents 477033a + d18e1d6 commit c3943fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pusher/push-notifications-server",
"version": "0.11.0",
"version": "1.0.0",
"description": "NodeJS Server SDK for Pusher Push Notifications",
"main": "push-notifications.js",
"repository": "https://github.com/pusher/push-notifications-node",
Expand Down
2 changes: 1 addition & 1 deletion push-notifications.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const https = require('https');

const SDK_VERSION = '0.10.6';
const SDK_VERSION = '1.0.0';
const INTERESTS_REGEX = new RegExp('^(_|\\-|=|@|,|\\.|;|[A-Z]|[a-z]|[0-9])*$');
const INTEREST_STRING_MAX_LENGTH = 164;
const INTEREST_ARRAY_MAX_LENGTH = 100;
Expand Down
2 changes: 1 addition & 1 deletion tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ describe('PushNotifications Node SDK', () => {
'content-type': 'application/json',
'content-length': 55,
authorization: 'Bearer SECRET_KEY',
'x-pusher-library': 'pusher-push-notifications-node 0.10.6',
'x-pusher-library': 'pusher-push-notifications-node 1.0.0',
host: 'instance_id.pushnotifications.pusher.com'
});
expect(body).to.deep.equal({
Expand Down

0 comments on commit c3943fa

Please sign in to comment.