Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Presman committed Feb 7, 2017
1 parent 4bc1b19 commit adb5e84
Show file tree
Hide file tree
Showing 12 changed files with 28 additions and 12 deletions.
1 change: 1 addition & 0 deletions .eslintrc.yml
Expand Up @@ -20,3 +20,4 @@ rules:
import/no-extraneous-dependencies: 0
class-methods-use-this: 0
no-await-in-loop: 0
no-multi-assign: 0
7 changes: 6 additions & 1 deletion .pubnub.yml
@@ -1,8 +1,13 @@
name: javascript
version: 4.4.2
version: 4.4.3
schema: 1
scm: github.com/pubnub/javascript
changelog:
- version: v4.4.3
date:
changes:
- type: improvement
text: downgrade superagent to v2; add new entry point for react native.
- version: v4.4.2
date:
changes:
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,4 +1,14 @@

## [v4.4.3](https://github.com/pubnub/javascript/tree/v4.4.3)


[Full Changelog](https://github.com/pubnub/javascript/compare/v4.4.2...v4.4.3)


- ⭐downgrade superagent to v2; add new entry point for react native.



## [v4.4.2](https://github.com/pubnub/javascript/tree/v4.4.2)


Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -18,5 +18,5 @@ please use the [master_3x](https://github.com/pubnub/javascript/tree/master_3x)
- If you **need help** or have a **general question**, contact <support@pubnub.com>

## CDN Links
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.4.2.min.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.4.2.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.4.3.min.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.4.3.js
4 changes: 2 additions & 2 deletions dist/web/pubnub.js
@@ -1,4 +1,4 @@
/*! 4.4.2 / Consumer */
/*! 4.4.3 / Consumer */
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
Expand Down Expand Up @@ -2731,7 +2731,7 @@ return /******/ (function(modules) { // webpackBootstrap
}, {
key: 'getVersion',
value: function getVersion() {
return '4.4.2';
return '4.4.3';
}
}, {
key: '_decideUUID',
Expand Down
2 changes: 1 addition & 1 deletion dist/web/pubnub.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/core/components/config.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/core/components/config.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/react_native/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/react_native/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "pubnub",
"version": "4.4.2",
"version": "4.4.3",
"author": "PubNub <support@pubnub.com>",
"description": "Publish & Subscribe Real-time Messaging with PubNub",
"bin": {},
Expand Down
2 changes: 1 addition & 1 deletion src/core/components/config.js
Expand Up @@ -189,7 +189,7 @@ export default class {
setSendBeaconConfig(val: boolean): this { this._useSendBeacon = val; return this; }

getVersion(): string {
return '4.4.2';
return '4.4.3';
}

_decideUUID(providedUUID: string): string {
Expand Down

0 comments on commit adb5e84

Please sign in to comment.