Skip to content

Commit

Permalink
Regenerate and release version 1.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonWoolf committed May 8, 2019
1 parent ec6342b commit df68532
Show file tree
Hide file tree
Showing 13 changed files with 30 additions and 30 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ This library exposes two API variants. Firstly, the original (and presently the

For this library version, and for all future 1.x versions, the callback-based API will be the default, and the promises-based variant will need to be explicitly selected, to avoid breaking backwards compatibility. However, a move to the promises-based variant as the default is possible at the next major release. If you are not handling promises, and want a version of the library that will not start returning promises for calls where you don't pass a callback in future versions, you can explicitly require the callback variant.

#### Version: 1.1.8
#### Version: 1.1.9

The latest stable version of the Ably Javascript client library is version: 1.1.8 .
The latest stable version of the Ably Javascript client library is version: 1.1.9 .

For complete API documentation, see the [Ably documentation](https://www.ably.io/documentation).

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Ably",
"version": "1.1.8",
"version": "1.1.9",
"homepage": "https://www.ably.io/",
"authors": [
"Paddy Byers <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion browser/fragments/license.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @license Copyright 2019, Ably
*
* Ably JavaScript Library v1.1.8
* Ably JavaScript Library v1.1.9
* https://github.com/ably/ably-js
*
* Ably Realtime Messaging
Expand Down
6 changes: 3 additions & 3 deletions browser/static/ably-commonjs.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @license Copyright 2019, Ably
*
* Ably JavaScript Library v1.1.8
* Ably JavaScript Library v1.1.9
* https://github.com/ably/ably-js
*
* Ably Realtime Messaging
Expand Down Expand Up @@ -4615,7 +4615,7 @@ Defaults.TIMEOUTS = {
Defaults.httpMaxRetryCount = 3;
Defaults.maxMessageSize = 65536;

Defaults.version = '1.1.8';
Defaults.version = '1.1.9';
Defaults.libstring = Platform.libver + Defaults.version;
Defaults.apiVersion = '1.1';

Expand Down Expand Up @@ -9256,7 +9256,7 @@ var Auth = (function() {
}
}
/* RSA8c2 */
var authParams = Utils.mixin({}, authOptions.authParams, params);
var authParams = Utils.mixin({}, authOptions.authParams || {}, params);
var authUrlRequestCallback = function(err, body, headers, unpacked) {
if (err) {
Logger.logAction(Logger.LOG_MICRO, 'Auth.requestToken().tokenRequestCallback', 'Received Error; ' + Utils.inspectError(err));
Expand Down
6 changes: 3 additions & 3 deletions browser/static/ably-commonjs.noencryption.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @license Copyright 2019, Ably
*
* Ably JavaScript Library v1.1.8
* Ably JavaScript Library v1.1.9
* https://github.com/ably/ably-js
*
* Ably Realtime Messaging
Expand Down Expand Up @@ -3181,7 +3181,7 @@ Defaults.TIMEOUTS = {
Defaults.httpMaxRetryCount = 3;
Defaults.maxMessageSize = 65536;

Defaults.version = '1.1.8';
Defaults.version = '1.1.9';
Defaults.libstring = Platform.libver + Defaults.version;
Defaults.apiVersion = '1.1';

Expand Down Expand Up @@ -7822,7 +7822,7 @@ var Auth = (function() {
}
}
/* RSA8c2 */
var authParams = Utils.mixin({}, authOptions.authParams, params);
var authParams = Utils.mixin({}, authOptions.authParams || {}, params);
var authUrlRequestCallback = function(err, body, headers, unpacked) {
if (err) {
Logger.logAction(Logger.LOG_MICRO, 'Auth.requestToken().tokenRequestCallback', 'Received Error; ' + Utils.inspectError(err));
Expand Down
6 changes: 3 additions & 3 deletions browser/static/ably-nativescript.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @license Copyright 2019, Ably
*
* Ably JavaScript Library v1.1.8
* Ably JavaScript Library v1.1.9
* https://github.com/ably/ably-js
*
* Ably Realtime Messaging
Expand Down Expand Up @@ -4547,7 +4547,7 @@ Defaults.TIMEOUTS = {
Defaults.httpMaxRetryCount = 3;
Defaults.maxMessageSize = 65536;

Defaults.version = '1.1.8';
Defaults.version = '1.1.9';
Defaults.libstring = Platform.libver + Defaults.version;
Defaults.apiVersion = '1.1';

Expand Down Expand Up @@ -9188,7 +9188,7 @@ var Auth = (function() {
}
}
/* RSA8c2 */
var authParams = Utils.mixin({}, authOptions.authParams, params);
var authParams = Utils.mixin({}, authOptions.authParams || {}, params);
var authUrlRequestCallback = function(err, body, headers, unpacked) {
if (err) {
Logger.logAction(Logger.LOG_MICRO, 'Auth.requestToken().tokenRequestCallback', 'Received Error; ' + Utils.inspectError(err));
Expand Down
6 changes: 3 additions & 3 deletions browser/static/ably-reactnative.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @license Copyright 2019, Ably
*
* Ably JavaScript Library v1.1.8
* Ably JavaScript Library v1.1.9
* https://github.com/ably/ably-js
*
* Ably Realtime Messaging
Expand Down Expand Up @@ -4565,7 +4565,7 @@ Defaults.TIMEOUTS = {
Defaults.httpMaxRetryCount = 3;
Defaults.maxMessageSize = 65536;

Defaults.version = '1.1.8';
Defaults.version = '1.1.9';
Defaults.libstring = Platform.libver + Defaults.version;
Defaults.apiVersion = '1.1';

Expand Down Expand Up @@ -9206,7 +9206,7 @@ var Auth = (function() {
}
}
/* RSA8c2 */
var authParams = Utils.mixin({}, authOptions.authParams, params);
var authParams = Utils.mixin({}, authOptions.authParams || {}, params);
var authUrlRequestCallback = function(err, body, headers, unpacked) {
if (err) {
Logger.logAction(Logger.LOG_MICRO, 'Auth.requestToken().tokenRequestCallback', 'Received Error; ' + Utils.inspectError(err));
Expand Down
6 changes: 3 additions & 3 deletions browser/static/ably.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @license Copyright 2019, Ably
*
* Ably JavaScript Library v1.1.8
* Ably JavaScript Library v1.1.9
* https://github.com/ably/ably-js
*
* Ably Realtime Messaging
Expand Down Expand Up @@ -4626,7 +4626,7 @@ Defaults.TIMEOUTS = {
Defaults.httpMaxRetryCount = 3;
Defaults.maxMessageSize = 65536;

Defaults.version = '1.1.8';
Defaults.version = '1.1.9';
Defaults.libstring = Platform.libver + Defaults.version;
Defaults.apiVersion = '1.1';

Expand Down Expand Up @@ -9267,7 +9267,7 @@ var Auth = (function() {
}
}
/* RSA8c2 */
var authParams = Utils.mixin({}, authOptions.authParams, params);
var authParams = Utils.mixin({}, authOptions.authParams || {}, params);
var authUrlRequestCallback = function(err, body, headers, unpacked) {
if (err) {
Logger.logAction(Logger.LOG_MICRO, 'Auth.requestToken().tokenRequestCallback', 'Received Error; ' + Utils.inspectError(err));
Expand Down
6 changes: 3 additions & 3 deletions browser/static/ably.min.js

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

6 changes: 3 additions & 3 deletions browser/static/ably.noencryption.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @license Copyright 2019, Ably
*
* Ably JavaScript Library v1.1.8
* Ably JavaScript Library v1.1.9
* https://github.com/ably/ably-js
*
* Ably Realtime Messaging
Expand Down Expand Up @@ -3192,7 +3192,7 @@ Defaults.TIMEOUTS = {
Defaults.httpMaxRetryCount = 3;
Defaults.maxMessageSize = 65536;

Defaults.version = '1.1.8';
Defaults.version = '1.1.9';
Defaults.libstring = Platform.libver + Defaults.version;
Defaults.apiVersion = '1.1';

Expand Down Expand Up @@ -7833,7 +7833,7 @@ var Auth = (function() {
}
}
/* RSA8c2 */
var authParams = Utils.mixin({}, authOptions.authParams, params);
var authParams = Utils.mixin({}, authOptions.authParams || {}, params);
var authUrlRequestCallback = function(err, body, headers, unpacked) {
if (err) {
Logger.logAction(Logger.LOG_MICRO, 'Auth.requestToken().tokenRequestCallback', 'Received Error; ' + Utils.inspectError(err));
Expand Down
Loading

0 comments on commit df68532

Please sign in to comment.