Skip to content

Commit

Permalink
⚡ Release 2.0.3 (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
flovilmart committed Apr 13, 2018
1 parent 7c2e028 commit 425d7d8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## [2.0.3](https://github.com/parse-server-modules/parse-server-push-adapter/tree/v2.0.3) (2018-04-13)
[Full Changelog](https://github.com/parse-server-modules/parse-server-push-adapter/compare/v2.0.2...v2.0.3)

**What's new**

- Use updated node-gcm version from @parse org. with safe request version

## [2.0.2](https://github.com/parse-server-modules/parse-server-push-adapter/tree/v2.0.2) (2017-10-22)
[Full Changelog](https://github.com/parse-server-modules/parse-server-push-adapter/compare/v2.0.1...v2.0.2)

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parse/push-adapter",
"version": "2.0.2",
"version": "2.0.3",
"description": "Base parse-server-push-adapter",
"main": "lib/index.js",
"files": [
Expand Down Expand Up @@ -34,7 +34,7 @@
},
"dependencies": {
"apn": "^2.1.3",
"node-gcm": "^0.14.0",
"@parse/node-gcm": "^0.14.0",
"npmlog": "^4.0.2",
"parse": "^1.9.2"
},
Expand Down
2 changes: 1 addition & 1 deletion src/GCM.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import Parse from 'parse';
import log from 'npmlog';
import gcm from 'node-gcm';
import gcm from '@parse/node-gcm';
import { randomString } from './PushAdapterUtils';

const LOG_PREFIX = 'parse-server-push-adapter GCM';
Expand Down

0 comments on commit 425d7d8

Please sign in to comment.