Skip to content

Commit

Permalink
chore: release 8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonroberts committed Jun 6, 2019
1 parent 5fcdd3b commit 8b3fbfb
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 11 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
<a name="8.0.0"></a>

# [8.0.0](https://github.com/ngrx/platform/compare/8.0.0-rc.1...8.0.0) (2019-06-06)

### Features

- **store:** add protection from type property use ([#1923](https://github.com/ngrx/platform/issues/1923)) ([bb9add7](https://github.com/ngrx/platform/commit/bb9add7)), closes [#1917](https://github.com/ngrx/platform/issues/1917)
- **store:** capture the type of a selector projector function ([#1920](https://github.com/ngrx/platform/issues/1920)) ([4e39cc1](https://github.com/ngrx/platform/commit/4e39cc1)), closes [#1908](https://github.com/ngrx/platform/issues/1908)

### Performance Improvements

- fine tune schematics to only commit changes ([#1925](https://github.com/ngrx/platform/issues/1925)) ([5fcdd3b](https://github.com/ngrx/platform/commit/5fcdd3b))

<a name="8.0.0-rc.1"></a>

# [8.0.0-rc.1](https://github.com/ngrx/platform/compare/8.0.0-rc.0...8.0.0-rc.1) (2019-06-04)
Expand Down
1 change: 0 additions & 1 deletion build/publish-latest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export async function publishToNpm(config: Config) {
'--',
'--access=public',
'--tag=latest',
'--dry-run',
];

shelljs.exec(cmd.join(' '));
Expand Down
2 changes: 1 addition & 1 deletion modules/data/schematics-core/utility/libs-version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^8.0.0-beta.0';
export const platformVersion = '^8.0.0';
2 changes: 1 addition & 1 deletion modules/effects/schematics-core/utility/libs-version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^8.0.0-beta.0';
export const platformVersion = '^8.0.0';
2 changes: 1 addition & 1 deletion modules/entity/schematics-core/utility/libs-version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^8.0.0-beta.0';
export const platformVersion = '^8.0.0';
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^8.0.0-beta.0';
export const platformVersion = '^8.0.0';
2 changes: 1 addition & 1 deletion modules/schematics-core/utility/libs-version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^8.0.0-beta.0';
export const platformVersion = '^8.0.0';
2 changes: 1 addition & 1 deletion modules/schematics/schematics-core/utility/libs-version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^8.0.0-beta.0';
export const platformVersion = '^8.0.0';
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^8.0.0-beta.0';
export const platformVersion = '^8.0.0';
2 changes: 1 addition & 1 deletion modules/store/schematics-core/utility/libs-version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const platformVersion = '^8.0.0-beta.0';
export const platformVersion = '^8.0.0';
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngrx/platform",
"version": "8.0.0-rc.1",
"version": "8.0.0",
"description": "monorepo for ngrx development",
"scripts": {
"build": "bazel build //modules/...",
Expand Down
2 changes: 1 addition & 1 deletion tools/defaults.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ load("@npm_bazel_jasmine//:index.bzl", _jasmine_node_test = "jasmine_node_test")
load("@npm_bazel_typescript//:index.bzl", _ts_library = "ts_library")

DEFAULT_TSCONFIG = "//:tsconfig.json"
NG_VERSION = "^8.0.0-beta"
NG_VERSION = "^8.0.0"
RXJS_VERSION = "^6.5.0"
NG_UPDATE_MIGRATIONS = "./migrations/migration.json"
MODULE_SCHEMATICS_COLLECTION = "./schematics/collection.json"
Expand Down

0 comments on commit 8b3fbfb

Please sign in to comment.