Skip to content

Commit

Permalink
chore(all): prepare release 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Aug 22, 2017
1 parent 6a61d75 commit fc1f49a
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-fetch-client",
"version": "1.1.2",
"version": "1.1.3",
"description": "A simple client based on the Fetch standard.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/aurelia-fetch-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ define(['exports'], function (exports) {
this.interceptors = [];

if (typeof fetch === 'undefined') {
throw new Error('HttpClient requires a Fetch API implementation, but the current environment doesn\'t support it. You may need to load a polyfill such as https://github.com/github/fetch.');
throw new Error('HttpClient requires a Fetch API implementation, but the current environment doesn\'t support it. You may need to load a polyfill such as https://github.com/github/fetch');
}
}

Expand Down
2 changes: 1 addition & 1 deletion dist/aurelia-fetch-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ export class HttpClient {
*/
constructor() {
if (typeof fetch === 'undefined') {
throw new Error('HttpClient requires a Fetch API implementation, but the current environment doesn\'t support it. You may need to load a polyfill such as https://github.com/github/fetch.');
throw new Error('HttpClient requires a Fetch API implementation, but the current environment doesn\'t support it. You may need to load a polyfill such as https://github.com/github/fetch');
}
}

Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-fetch-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ var HttpClient = exports.HttpClient = function () {
this.interceptors = [];

if (typeof fetch === 'undefined') {
throw new Error('HttpClient requires a Fetch API implementation, but the current environment doesn\'t support it. You may need to load a polyfill such as https://github.com/github/fetch.');
throw new Error('HttpClient requires a Fetch API implementation, but the current environment doesn\'t support it. You may need to load a polyfill such as https://github.com/github/fetch');
}
}

Expand Down
2 changes: 1 addition & 1 deletion dist/es2015/aurelia-fetch-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export let HttpClient = class HttpClient {
this.interceptors = [];

if (typeof fetch === 'undefined') {
throw new Error('HttpClient requires a Fetch API implementation, but the current environment doesn\'t support it. You may need to load a polyfill such as https://github.com/github/fetch.');
throw new Error('HttpClient requires a Fetch API implementation, but the current environment doesn\'t support it. You may need to load a polyfill such as https://github.com/github/fetch');
}
}

Expand Down
2 changes: 1 addition & 1 deletion dist/native-modules/aurelia-fetch-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export var HttpClient = function () {
this.interceptors = [];

if (typeof fetch === 'undefined') {
throw new Error('HttpClient requires a Fetch API implementation, but the current environment doesn\'t support it. You may need to load a polyfill such as https://github.com/github/fetch.');
throw new Error('HttpClient requires a Fetch API implementation, but the current environment doesn\'t support it. You may need to load a polyfill such as https://github.com/github/fetch');
}
}

Expand Down
2 changes: 1 addition & 1 deletion dist/system/aurelia-fetch-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ System.register([], function (_export, _context) {
this.interceptors = [];

if (typeof fetch === 'undefined') {
throw new Error('HttpClient requires a Fetch API implementation, but the current environment doesn\'t support it. You may need to load a polyfill such as https://github.com/github/fetch.');
throw new Error('HttpClient requires a Fetch API implementation, but the current environment doesn\'t support it. You may need to load a polyfill such as https://github.com/github/fetch');
}
}

Expand Down
7 changes: 7 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
<a name="1.1.3"></a>
## [1.1.3](https://github.com/aurelia/fetch-client/compare/1.1.2...v1.1.3) (2017-08-22)

### Bug Fixes

* fix style typo in error message that affected links displayed in editors

<a name="1.1.2"></a>
## [1.1.2](https://github.com/aurelia/fetch-client/compare/1.1.1...v1.1.2) (2017-03-23)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-fetch-client",
"version": "1.1.2",
"version": "1.1.3",
"description": "A simple client based on the Fetch standard.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit fc1f49a

Please sign in to comment.