Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 7fc1ca0

Browse files
committed
fix: update package.json to support Angular v5
1 parent c5a83c1 commit 7fc1ca0

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ because this is a development tool, not a production product.
88
We do try to tell you about such changes in this `CHANGELOG.md`
99
and we fix bugs as fast as we can.
1010

11+
<a id="0.5.1"></a>
12+
## 0.5.1 (2017-10-21)
13+
Support Angular v5.
14+
1115
<a id="0.5.0"></a>
1216
## 0.5.0 (2017-10-05)
1317
**BREAKING CHANGE**: HTTP response data no longer wrapped in object w/ `data` property by default.

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-in-memory-web-api",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "An in-memory web api for Angular demos and tests",
55
"main": "bundles/in-memory-web-api.umd.js",
66
"module": "index.js",
@@ -28,8 +28,9 @@
2828
},
2929
"homepage": "https://github.com/angular/in-memory-web-api#readme",
3030
"peerDependencies": {
31-
"@angular/core": ">=2.0.0 <5.0.0 || >=4.0.0-beta <5.0.0",
32-
"@angular/http": ">=2.0.0 <5.0.0 || >=4.0.0-beta <5.0.0",
31+
"@angular/common": ">=2.0.0 <6.0.0",
32+
"@angular/core": ">=2.0.0 <6.0.0",
33+
"@angular/http": ">=2.0.0 <6.0.0",
3334
"rxjs": "^5.1.0"
3435
},
3536
"devDependencies": {

0 commit comments

Comments
 (0)