Skip to content

Commit ed472da

Browse files
Releasing v4.28.2
1 parent b6caf11 commit ed472da

File tree

11 files changed

+27
-13
lines changed

11 files changed

+27
-13
lines changed

.pubnub.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
---
22
changelog:
3+
-
4+
changes:
5+
-
6+
text: "Fixes a bug in removeChannelMembers and removeMemberships."
7+
type: bug
8+
date: 2020-06-29
9+
version: v4.28.2
310
-
411
changes:
512
-
@@ -847,4 +854,4 @@ supported-platforms:
847854
- "Ubuntu 14.04 and up"
848855
- "Windows 7 and up"
849856
version: "Pubnub Javascript for Node"
850-
version: "4.28.1"
857+
version: "4.28.2"

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [v4.28.2](https://github.com/pubnub/javascript/releases/tag/v4.28.2)
2+
June-29-2020
3+
4+
[Full Changelog](https://github.com/pubnub/javascript/compare/v4.28.1...v4.28.2)
5+
6+
- 🐛 Fixes a bug in removeChannelMembers and removeMemberships.
7+
18
## [v4.28.1](https://github.com/pubnub/javascript/releases/tag/v4.28.1)
29
June-19-2020
310

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ please use the [master_3x](https://github.com/pubnub/javascript/tree/master_3x)
2222

2323

2424

25-
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.28.1.min.js
26-
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.28.1.js
25+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.28.2.min.js
26+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.28.2.js

dist/titanium/pubnub.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! 4.28.1 / Consumer */
1+
/*! 4.28.2 / Consumer */
22
exports["PubNub"] =
33
/******/ (function(modules) { // webpackBootstrap
44
/******/ // The module cache
@@ -506,7 +506,7 @@ var _default = function () {
506506
}, {
507507
key: "getVersion",
508508
value: function getVersion() {
509-
return '4.28.1';
509+
return '4.28.2';
510510
}
511511
}, {
512512
key: "_addPnsdkSuffix",

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.28.1 / Consumer */
1+
/*! 4.28.2 / Consumer */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -516,7 +516,7 @@ var _default = function () {
516516
}, {
517517
key: "getVersion",
518518
value: function getVersion() {
519-
return '4.28.1';
519+
return '4.28.2';
520520
}
521521
}, {
522522
key: "_addPnsdkSuffix",

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pubnub",
3-
"version": "4.28.1",
3+
"version": "4.28.2",
44
"author": "PubNub <[email protected]>",
55
"description": "Publish & Subscribe Real-time Messaging with PubNub",
66
"bin": {},

src/core/components/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ export default class {
307307
}
308308

309309
getVersion(): string {
310-
return '4.28.1';
310+
return '4.28.2';
311311
}
312312

313313
_addPnsdkSuffix(name: string, suffix: string) {

0 commit comments

Comments
 (0)