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

Commit

Permalink
chore(*): Prepare to release 5.0.0-alpha+7.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 188217258
  • Loading branch information
matanlurey committed Mar 7, 2018
1 parent d02a4ba commit 7a4b6af
Show file tree
Hide file tree
Showing 12 changed files with 33 additions and 13 deletions.
6 changes: 5 additions & 1 deletion angular/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 5.0.0-alpha+7

**NOTE**: We now require a dev SDK of `>=2.0.0-dev.28.0`.

### Breaking changes

* `SafeInnerHtmlDirective` is no longer injectable.
Expand All @@ -22,7 +26,7 @@
in templates. See https://github.com/dart-lang/angular/issues/844 for more
information.

* `OpaqueToken` and `MultiToken` no longer have overriden `operator==` and
* `OpaqueToken` and `MultiToken` no longer have overridden `operator==` and
`hashCode` methods/fields. This wasn't supported, in practice, in most of
the DI systems, but any custom use of this class may have relied on this.

Expand Down
4 changes: 2 additions & 2 deletions angular/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: angular
version: 5.0.0-alpha+6
version: 5.0.0-alpha+7
author: Dart Team <[email protected]>
description: Fast and productive web framework
homepage: https://webdev.dartlang.org/angular
Expand All @@ -19,7 +19,7 @@ dependencies:
# Compiler. Eventually we want to move these to angular_compiler.
analyzer: '^0.31.0+1'
angular_ast: ^0.4.3
angular_compiler: ^0.4.0-alpha+6
angular_compiler: ^0.4.0-alpha+7
build: ^0.12.0+1
code_builder: '^3.0.1'
csslib: ^0.14.1
Expand Down
4 changes: 4 additions & 0 deletions angular_ast/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.4.3+1

- Maintenance release, supporting newer package versions.

## 0.4.3

- Maintenance release, supporting newer package versions.
Expand Down
2 changes: 1 addition & 1 deletion angular_ast/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: angular_ast
author: Dart Team <[email protected]>
homepage: https://github.com/dart-lang/angular
description: Parser and utilities for AngularDart templates
version: 0.4.3
version: 0.4.3+1

environment:
sdk: ">=2.0.0-dev.28.0 <2.0.0"
Expand Down
4 changes: 4 additions & 0 deletions angular_compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.4.0-alpha+7

* Maintenence release.

## 0.4.0-alpha+6

### New features
Expand Down
2 changes: 1 addition & 1 deletion angular_compiler/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: angular_compiler
author: Dart Team <[email protected]>
homepage: https://github.com/dart-lang/angular
description: Compiler for AngularDart.
version: 0.4.0-alpha+6
version: 0.4.0-alpha+7

environment:
sdk: ">=2.0.0-dev.28.0 <2.0.0"
Expand Down
2 changes: 2 additions & 0 deletions angular_forms/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 1.0.1-alpha+7

### Breaking changes

- The following directives are no longer injectable:
Expand Down
6 changes: 3 additions & 3 deletions angular_forms/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ name: angular_forms
author: Dart Team <[email protected]>
homepage: https://github.com/dart-lang/angular
description: Forms framework for AngularDart.
version: 1.0.1-alpha+6
version: 1.0.1-alpha+7

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

dependencies:
angular: '^5.0.0-alpha+6'
angular: '^5.0.0-alpha+7'
meta: ^1.1.2

dev_dependencies:
angular_test: ^2.0.0-alpha+4
angular_test: ^2.0.0-alpha+5
build_runner: ^0.7.9
build_test: ^0.10.0
build_web_compilers: ^0.3.0
Expand Down
2 changes: 2 additions & 0 deletions angular_router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 2.0.0-alpha+7

### Breaking changes

* `RouterOutlet` is no longer injectable.
Expand Down
6 changes: 3 additions & 3 deletions angular_router/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ name: angular_router
author: Dart Team <[email protected]>
homepage: https://github.com/dart-lang/angular
description: Router for AngularDart.
version: 2.0.0-alpha+6
version: 2.0.0-alpha+7

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

dependencies:
angular: '^5.0.0-alpha+6'
angular: '^5.0.0-alpha+7'
collection: ^1.14.5
js: ^0.6.0
meta: ^1.1.2

dev_dependencies:
async: ^2.0.3
angular_test: ^2.0.0-alpha+4
angular_test: ^2.0.0-alpha+5
build_runner: ^0.7.9
build_test: ^0.10.0
build_web_compilers: ^0.3.0
Expand Down
4 changes: 4 additions & 0 deletions angular_test/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.0.0-alpha+5

* Maintenance release, supporting newer package versions.

## 2.0.0-alpha+4

* Removed built-in support for `package:pageloader`. The current version of
Expand Down
4 changes: 2 additions & 2 deletions angular_test/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: angular_test
author: Dart Team <[email protected]>
homepage: https://github.com/dart-lang/angular
description: Testing runner and library for AngularDart
version: 2.0.0-alpha+4
version: 2.0.0-alpha+5

environment:
sdk: ">=2.0.0-dev.28.0 <2.0.0"
Expand All @@ -12,7 +12,7 @@ executables:
angular_test:

dependencies:
angular: '^5.0.0-alpha+6'
angular: '^5.0.0-alpha+7'
matcher: ^0.12.0+2
meta: ^1.1.2
test: ^0.12.32
Expand Down

0 comments on commit 7a4b6af

Please sign in to comment.