Skip to content
This repository was archived by the owner on Sep 16, 2022. It is now read-only.

Commit 03dae0d

Browse files
committed
Prepare to release 5.0.0-alpha+8 and friends.
Also bump angular_forms to 2.0.0-alpha, because it's not valid to have breaking changes between 1.0.0 and 1.0.1. We technically didn't violate any rules because of the -alpha designation, but we couldn't release a 1.0.1-final in this state. PiperOrigin-RevId: 189348892
1 parent 15bb249 commit 03dae0d

File tree

12 files changed

+30
-11
lines changed

12 files changed

+30
-11
lines changed

angular/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 5.0.0-alpha+8
2+
13
### New features
24

35
* Compiler can optimize field accesses to classes that are statically accessed

angular/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: angular
2-
version: 5.0.0-alpha+7
2+
version: 5.0.0-alpha+8
33
author: Dart Team <[email protected]>
44
description: Fast and productive web framework
55
homepage: https://webdev.dartlang.org/angular
@@ -18,8 +18,8 @@ dependencies:
1818

1919
# Compiler. Eventually we want to move these to angular_compiler.
2020
analyzer: '^0.31.0+1'
21-
angular_ast: ^0.4.3
22-
angular_compiler: ^0.4.0-alpha+7
21+
angular_ast: ^0.4.4
22+
angular_compiler: ^0.4.0-alpha+8
2323
build: ^0.12.0+2
2424
code_builder: '^3.0.1'
2525
csslib: ^0.14.1

angular_ast/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 0.4.4
2+
13
* Added `MinimizeWhitespaceVisitor`.
24

35
## 0.4.3+1

angular_ast/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: angular_ast
22
author: Dart Team <[email protected]>
33
homepage: https://github.com/dart-lang/angular
44
description: Parser and utilities for AngularDart templates
5-
version: 0.4.3+1
5+
version: 0.4.4
66

77
environment:
88
sdk: ">=2.0.0-dev.28.0 <2.0.0"

angular_compiler/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 0.4.0-alpha+8
2+
13
### Breaking changes
24

35
* Removed `use_new_template_parser` flag. The old parser was removed.

angular_compiler/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: angular_compiler
22
author: Dart Team <[email protected]>
33
homepage: https://github.com/dart-lang/angular
44
description: Compiler for AngularDart.
5-
version: 0.4.0-alpha+7
5+
version: 0.4.0-alpha+8
66

77
environment:
88
sdk: ">=2.0.0-dev.28.0 <2.0.0"

angular_forms/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 2.0.0-alpha
2+
3+
**NOTE**: This used to be `1.0.1-alpha`, but has changed to be `2.0.0-alpha` due
4+
to the fact that there are breaking changes in the previous dev releases. Future
5+
development releases are moving to `2.x.x`, and a `1.0.1` will never be
6+
released.
7+
18
### Breaking changes
29

310
* `AbstractControl.find` now only accepts a String. To supply a list, use

angular_forms/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: angular_forms
22
author: Dart Team <[email protected]>
33
homepage: https://github.com/dart-lang/angular
44
description: Forms framework for AngularDart.
5-
version: 1.0.1-alpha+7
5+
version: 2.0.0-alpha
66

77
environment:
88
sdk: ">=2.0.0-dev.28.0 <2.0.0"
@@ -12,7 +12,7 @@ dependencies:
1212
meta: ^1.1.2
1313

1414
dev_dependencies:
15-
angular_test: ^2.0.0-alpha+5
15+
angular_test: ^2.0.0-alpha+8
1616
build_runner: ^0.8.0
1717
build_test: ^0.10.1+1
1818
build_web_compilers: ^0.3.4+1

angular_router/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 2.0.0-alpha+8
2+
13
### Breaking changes
24

35
* `APP_BASE_HREF` is being renamed `appBaseHref`.

angular_router/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@ name: angular_router
22
author: Dart Team <[email protected]>
33
homepage: https://github.com/dart-lang/angular
44
description: Router for AngularDart.
5-
version: 2.0.0-alpha+7
5+
version: 2.0.0-alpha+8
66

77
environment:
88
sdk: ">=2.0.0-dev.28.0 <2.0.0"
99

1010
dependencies:
11-
angular: '^5.0.0-alpha+7'
11+
angular: '^5.0.0-alpha+8'
1212
collection: ^1.14.5
1313
js: ^0.6.0
1414
meta: ^1.1.2
1515

1616
dev_dependencies:
1717
async: ^2.0.3
18-
angular_test: ^2.0.0-alpha+5
18+
angular_test: ^2.0.0-alpha+6
1919
build_runner: ^0.8.0
2020
build_test: ^0.10.1+1
2121
build_web_compilers: ^0.3.4+1

0 commit comments

Comments
 (0)