Skip to content

Commit 3dfb80f

Browse files
authored
Merge branch 'develop' into metadata_no_propagating
2 parents d32fab9 + 2f9bca0 commit 3dfb80f

File tree

13 files changed

+36
-17
lines changed

13 files changed

+36
-17
lines changed

.pubnub.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: javascript
2-
version: 4.8.0
2+
version: 4.9.0
33
schema: 1
44
scm: github.com/pubnub/javascript
55
files:

README.md

Lines changed: 2 additions & 2 deletions
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 <support@pubnub.com>
2020

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

dist/titanium/pubnub.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! 4.8.0 / Consumer */
1+
/*! 4.9.0 / Consumer */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -788,7 +788,7 @@ return /******/ (function(modules) { // webpackBootstrap
788788
}, {
789789
key: 'getVersion',
790790
value: function getVersion() {
791-
return '4.8.0';
791+
return '4.9.0';
792792
}
793793
}, {
794794
key: '_decideUUID',

dist/titanium/pubnub.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/web/pubnub.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! 4.8.0 / Consumer */
1+
/*! 4.9.0 / Consumer */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -810,7 +810,7 @@ return /******/ (function(modules) { // webpackBootstrap
810810
}, {
811811
key: 'getVersion',
812812
value: function getVersion() {
813-
return '4.8.0';
813+
return '4.9.0';
814814
}
815815
}, {
816816
key: '_decideUUID',

dist/web/pubnub.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/components/config.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/components/config.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pubnub",
3-
"version": "4.8.0",
3+
"version": "4.9.0",
44
"author": "PubNub <support@pubnub.com>",
55
"description": "Publish & Subscribe Real-time Messaging with PubNub",
66
"bin": {},

src/core/components/config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export default class {
109109

110110

111111
/*
112-
support custom encryption and decryption functions.
112+
support customp encryption and decryption functions.
113113
*/
114114
customEncrypt: Function // function to support custome encryption of messages
115115
customDecrypt: Function // function used to decrypt old version messages
@@ -205,7 +205,7 @@ export default class {
205205
setSendBeaconConfig(val: boolean): this { this._useSendBeacon = val; return this; }
206206

207207
getVersion(): string {
208-
return '4.8.0';
208+
return '4.9.0';
209209
}
210210

211211
_decideUUID(providedUUID: string): string {

0 commit comments

Comments
 (0)