Skip to content

Commit

Permalink
4.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Presman committed Apr 6, 2017
1 parent 52ecf5f commit 455dddc
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 13 deletions.
7 changes: 6 additions & 1 deletion .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
name: javascript
version: 4.7.0
version: 4.8.0
schema: 1
scm: github.com/pubnub/javascript
files:
- dist/web/pubnub.js
- dist/web/pubnub.min.js
changelog:
- version: v4.8.0
date:
changes:
- type: feature
text: allow manual control over network state via listenToBrowserNetworkEvents
- version: v4.7.0
date:
changes:
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@

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


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

- 🌟allow manual control over network state via listenToBrowserNetworkEvents




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


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

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

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/web/pubnub.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! 4.7.0 / Consumer */
/*! 4.8.0 / Consumer */
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
Expand Down Expand Up @@ -807,7 +807,7 @@ return /******/ (function(modules) { // webpackBootstrap
}, {
key: 'getVersion',
value: function getVersion() {
return '4.7.0';
return '4.8.0';
}
}, {
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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pubnub",
"version": "4.7.0",
"version": "4.8.0",
"author": "PubNub <[email protected]>",
"description": "Publish & Subscribe Real-time Messaging with PubNub",
"bin": {},
Expand Down
2 changes: 1 addition & 1 deletion src/core/components/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ export default class {
setSendBeaconConfig(val: boolean): this { this._useSendBeacon = val; return this; }

getVersion(): string {
return '4.7.0';
return '4.8.0';
}

_decideUUID(providedUUID: string): string {
Expand Down

0 comments on commit 455dddc

Please sign in to comment.