Skip to content

Commit

Permalink
release v1.4.0-RC7
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielKucal committed Mar 1, 2018
1 parent 0ed8490 commit 7ff6aa7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This library adds decorators that make it super easy to *automagically* save and
### v1.4.0
- standardized behavior for:
- more than 1 decorator, e.g. in `@LocalStorage() @CookieStorage() variable: any;` `CookieStorage` (decorator closer to variable) has higher priority, hence the value will be read from cookies only. The cookie value will be saved in `localStorage` regardless of its content to keep consistency.
- `WebStorage.clear('all')` - will now remove everything except `ngx-store`'s config (stored in `localStorage`)
- `WebStorageService.clear('all')` - now will remove everything except `ngx-store`'s config (stored in `localStorage`)
- removed deprecated (since v0.5) `WEBSTORAGE_CONFIG`
- `@SharedStorage` has now alias `@TempStorage`
- introduced [builder pattern](https://github.com/zoomsphere/ngx-store/tree/master/src/service#builder-pattern)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ngx-store",
"private": true,
"version": "1.4.0-RC6",
"version": "1.4.0-RC7",
"description": "Angular decorators to automagically keep variables in HTML5 LocalStorage, SessionStorage, cookies; injectable services for managing and listening to data changes and a bit more.",
"main": "./ngx-store.js",
"main for angular5": "./bundles/ngx-store.umd.js",
Expand All @@ -14,7 +14,7 @@
"test:watch": "karma start karma.conf.js --single-run false",
"pack-lib": "npm run build && npm pack ./dist",
"publish-lib": "npm run build && npm publish --tag RC ./dist",
"publish-lib:next": "npm run build && npm publish --tag next ./dist",
"publish-lib:rc": "npm run build && npm publish --tag RC ./dist",
"compodoc": "compodoc -p tsconfig.json",
"compodoc-serve": "compodoc -s"
},
Expand Down

0 comments on commit 7ff6aa7

Please sign in to comment.