File tree Expand file tree Collapse file tree 3 files changed +17
-7
lines changed Expand file tree Collapse file tree 3 files changed +17
-7
lines changed Original file line number Diff line number Diff line change
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
+
1
16
# 9.0.0-rc.7 "obsidian-elephant" (2020-01-08)
2
17
3
18
### material
Original file line number Diff line number Diff line change 41
41
"tslint" : " tslint -c tslint.json --project ./tsconfig.json" ,
42
42
"stylelint" : " stylelint \" src/**/*.+(css|scss)\" --config .stylelintrc.json --syntax scss"
43
43
},
44
- "version" : " 9.0.0-rc.7 " ,
44
+ "version" : " 9.0.0-rc.8 " ,
45
45
"dependencies" : {
46
46
"@angular/animations" : " ^9.0.0-rc.8" ,
47
47
"@angular/common" : " ^9.0.0-rc.8" ,
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ export class BaseReleaseTask {
35
35
36
36
// For this version there is only *one* allowed publish branch, so we could
37
37
// 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' ;
39
39
40
40
if ( ! this . git . checkoutBranch ( defaultPublishBranch ) ) {
41
41
console . error ( chalk . red (
@@ -65,11 +65,6 @@ export class BaseReleaseTask {
65
65
66
66
/** Verifies that there are no uncommitted changes in the project. */
67
67
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
- }
73
68
}
74
69
75
70
/** Prompts the user with a confirmation question and a specified message. */
You can’t perform that action at this time.
0 commit comments