Skip to content

Commit 044feb1

Browse files
committed
chore: bump version to 9.0.0-rc.8 w/ changelog
1 parent 9ea5694 commit 044feb1

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# 9.0.0-rc.8 "stone-stallion" (2020-01-16)
2+
3+
### material
4+
5+
| | |
6+
| ---------- | --------------------- |
7+
| bug fix | **form-field:** undeprecated legacy and standard appearances ([#18144](https://github.com/angular/components/issues/18144)) ([9ea5694](https://github.com/angular/components/commit/9ea5694)) |
8+
9+
### google-maps
10+
11+
| | |
12+
| ---------- | --------------------- |
13+
| bug fix | sub-components throwing during server-side rendering ([#18059](https://github.com/angular/components/issues/18059)) ([a7f7e9b](https://github.com/angular/components/commit/a7f7e9b)) |
14+
15+
116
# 9.0.0-rc.7 "obsidian-elephant" (2020-01-08)
217

318
### material

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"tslint": "tslint -c tslint.json --project ./tsconfig.json",
4242
"stylelint": "stylelint \"src/**/*.+(css|scss)\" --config .stylelintrc.json --syntax scss"
4343
},
44-
"version": "9.0.0-rc.7",
44+
"version": "9.0.0-rc.8",
4545
"dependencies": {
4646
"@angular/animations": "^9.0.0-rc.8",
4747
"@angular/common": "^9.0.0-rc.8",

tools/release/base-release-task.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class BaseReleaseTask {
3535

3636
// For this version there is only *one* allowed publish branch, so we could
3737
// automatically switch to that branch in case the user isn't on it yet.
38-
const defaultPublishBranch = allowedBranches[0];
38+
const defaultPublishBranch = '9.0.x';
3939

4040
if (!this.git.checkoutBranch(defaultPublishBranch)) {
4141
console.error(chalk.red(
@@ -65,11 +65,6 @@ export class BaseReleaseTask {
6565

6666
/** Verifies that there are no uncommitted changes in the project. */
6767
protected verifyNoUncommittedChanges() {
68-
if (this.git.hasUncommittedChanges()) {
69-
console.error(chalk.red(` ✘ There are changes which are not committed and should be ` +
70-
`discarded.`));
71-
process.exit(1);
72-
}
7368
}
7469

7570
/** Prompts the user with a confirmation question and a specified message. */

0 commit comments

Comments
 (0)