Skip to content

Commit 02f17a6

Browse files
author
Max Presman
committed
version bump
1 parent 6d61989 commit 02f17a6

File tree

11 files changed

+30
-14
lines changed

11 files changed

+30
-14
lines changed

.pubnub.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
name: javascript
2-
version: 4.16.1
2+
version: 4.16.2
33
schema: 1
44
scm: github.com/pubnub/javascript
55
files:
66
- dist/web/pubnub.js
77
- dist/web/pubnub.min.js
88
changelog:
9+
- version: v4.16.2
10+
date: 2017-10-19
11+
changes:
12+
- type: bug
13+
text: fix UUID library to work in browsers.
914
- version: v4.16.1
1015
date: 2017-10-12
1116
changes:

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11

2+
## [v4.16.2](https://github.com/pubnub/javascript/tree/v4.16.2)
3+
October-19-2017
4+
5+
6+
[Full Changelog](https://github.com/pubnub/javascript/compare/v4.16.1...v4.16.2)
7+
8+
9+
10+
- 🐛fix UUID library to work in browsers.
11+
12+
213
## [v4.16.1](https://github.com/pubnub/javascript/tree/v4.16.1)
314
October-12-2017
415

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ please use the [master_3x](https://github.com/pubnub/javascript/tree/master_3x)
1919
- If you **need help** or have a **general question**, contact <[email protected]>
2020

2121
## CDN Links
22-
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.16.1.min.js
23-
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.16.1.js
22+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.16.2.min.js
23+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.16.2.js

dist/titanium/pubnub.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! 4.16.1 / Consumer */
1+
/*! 4.16.2 / Consumer */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -620,7 +620,7 @@ return /******/ (function(modules) { // webpackBootstrap
620620
}, {
621621
key: 'getVersion',
622622
value: function getVersion() {
623-
return '4.16.1';
623+
return '4.16.2';
624624
}
625625
}, {
626626
key: '_decideUUID',

dist/titanium/pubnub.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/web/pubnub.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! 4.16.1 / Consumer */
1+
/*! 4.16.2 / Consumer */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -642,7 +642,7 @@ return /******/ (function(modules) { // webpackBootstrap
642642
}, {
643643
key: 'getVersion',
644644
value: function getVersion() {
645-
return '4.16.1';
645+
return '4.16.2';
646646
}
647647
}, {
648648
key: '_decideUUID',

dist/web/pubnub.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/components/config.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/components/config.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pubnub",
3-
"version": "4.16.1",
3+
"version": "4.16.2",
44
"author": "PubNub <[email protected]>",
55
"description": "Publish & Subscribe Real-time Messaging with PubNub",
66
"bin": {},
@@ -90,4 +90,4 @@
9090
"engine": {
9191
"node": ">=0.8"
9292
}
93-
}
93+
}

src/core/components/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ export default class {
218218
setSendBeaconConfig(val: boolean): this { this._useSendBeacon = val; return this; }
219219

220220
getVersion(): string {
221-
return '4.16.1';
221+
return '4.16.2';
222222
}
223223

224224
_decideUUID(providedUUID: string): string {

0 commit comments

Comments
 (0)