diff --git a/bower.json b/bower.json index a51874b..3aff0f0 100644 --- a/bower.json +++ b/bower.json @@ -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", diff --git a/dist/amd/aurelia-fetch-client.js b/dist/amd/aurelia-fetch-client.js index b488382..9c4db14 100644 --- a/dist/amd/aurelia-fetch-client.js +++ b/dist/amd/aurelia-fetch-client.js @@ -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'); } } diff --git a/dist/aurelia-fetch-client.js b/dist/aurelia-fetch-client.js index 49bb98b..a80dc59 100644 --- a/dist/aurelia-fetch-client.js +++ b/dist/aurelia-fetch-client.js @@ -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'); } } diff --git a/dist/commonjs/aurelia-fetch-client.js b/dist/commonjs/aurelia-fetch-client.js index 0106838..f918450 100644 --- a/dist/commonjs/aurelia-fetch-client.js +++ b/dist/commonjs/aurelia-fetch-client.js @@ -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'); } } diff --git a/dist/es2015/aurelia-fetch-client.js b/dist/es2015/aurelia-fetch-client.js index 03648fb..6b4a307 100644 --- a/dist/es2015/aurelia-fetch-client.js +++ b/dist/es2015/aurelia-fetch-client.js @@ -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'); } } diff --git a/dist/native-modules/aurelia-fetch-client.js b/dist/native-modules/aurelia-fetch-client.js index a054708..b1c82d2 100644 --- a/dist/native-modules/aurelia-fetch-client.js +++ b/dist/native-modules/aurelia-fetch-client.js @@ -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'); } } diff --git a/dist/system/aurelia-fetch-client.js b/dist/system/aurelia-fetch-client.js index 1d4f8a4..692056f 100644 --- a/dist/system/aurelia-fetch-client.js +++ b/dist/system/aurelia-fetch-client.js @@ -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'); } } diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index 79fab7e..8b721f9 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -1,3 +1,10 @@ + +## [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 + ## [1.1.2](https://github.com/aurelia/fetch-client/compare/1.1.1...v1.1.2) (2017-03-23) diff --git a/package.json b/package.json index 3df628c..8aa32d7 100644 --- a/package.json +++ b/package.json @@ -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",