Skip to content

Commit

Permalink
chore(all): prepare release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Apr 5, 2017
1 parent 90c14c5 commit 1b1c1e1
Show file tree
Hide file tree
Showing 9 changed files with 18 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-http-client",
"version": "1.1.0",
"version": "1.1.1",
"description": "A simple, restful, message-based wrapper around XMLHttpRequest.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/aurelia-http-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ define(['exports', 'aurelia-path', 'aurelia-pal'], function (exports, _aureliaPa
return;
}

if (_aureliaPal.PLATFORM.global.ArrayBufferView && message.content instanceof ArrayBufferView) {
if (_aureliaPal.PLATFORM.global.ArrayBuffer && message.content instanceof ArrayBuffer) {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/aurelia-http-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ export function contentTransformer(client: HttpClient, processor: RequestMessage
return;
}

if (PLATFORM.global.ArrayBufferView && message.content instanceof ArrayBufferView) {
if (PLATFORM.global.ArrayBuffer && message.content instanceof ArrayBuffer) {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-http-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ function contentTransformer(client, processor, message, xhr) {
return;
}

if (_aureliaPal.PLATFORM.global.ArrayBufferView && message.content instanceof ArrayBufferView) {
if (_aureliaPal.PLATFORM.global.ArrayBuffer && message.content instanceof ArrayBuffer) {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/es2015/aurelia-http-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ export function contentTransformer(client, processor, message, xhr) {
return;
}

if (PLATFORM.global.ArrayBufferView && message.content instanceof ArrayBufferView) {
if (PLATFORM.global.ArrayBuffer && message.content instanceof ArrayBuffer) {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/native-modules/aurelia-http-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ export function contentTransformer(client, processor, message, xhr) {
return;
}

if (PLATFORM.global.ArrayBufferView && message.content instanceof ArrayBufferView) {
if (PLATFORM.global.ArrayBuffer && message.content instanceof ArrayBuffer) {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/system/aurelia-http-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ System.register(['aurelia-path', 'aurelia-pal'], function (_export, _context) {
return;
}

if (PLATFORM.global.ArrayBufferView && message.content instanceof ArrayBufferView) {
if (PLATFORM.global.ArrayBuffer && message.content instanceof ArrayBuffer) {
return;
}

Expand Down
10 changes: 10 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="1.1.1"></a>
## [1.1.1](https://github.com/aurelia/http-client/compare/1.1.0...v1.1.1) (2017-04-05)


### Bug Fixes

* **xhr-transformers:** fix sending ArrayBuffer type ([4d957f8](https://github.com/aurelia/http-client/commit/4d957f8)), closes [#161](https://github.com/aurelia/http-client/issues/161)



<a name="1.1.0"></a>
# [1.1.0](https://github.com/aurelia/http-client/compare/1.0.4...v1.1.0) (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-http-client",
"version": "1.1.0",
"version": "1.1.1",
"description": "A simple, restful, message-based wrapper around XMLHttpRequest.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 1b1c1e1

Please sign in to comment.