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

Commit

Permalink
Update changelog and pubspecs to prep for 5.1 release.
Browse files Browse the repository at this point in the history
Closes #1634

PiperOrigin-RevId: 216413288
  • Loading branch information
alorenzen committed Oct 9, 2018
1 parent 363f535 commit 714c5de
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 13 deletions.
2 changes: 2 additions & 0 deletions angular/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 5.1.0

### New features

* Added support for generic components and directives.
Expand Down
6 changes: 3 additions & 3 deletions angular/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: angular
version: 5.0.0
version: 5.1.0
author: Dart Team <web@dartlang.org>
description: Fast and productive web framework
homepage: https://webdev.dartlang.org/angular
Expand All @@ -20,8 +20,8 @@ dependencies:
analyzer: ^0.33.0

# It is extremely important these two dependencies stay pinned to current.
angular_ast: 0.5.6
angular_compiler: 0.4.0
angular_ast: 0.5.7
angular_compiler: 0.4.1
##########################################################################

build: '>=0.12.7 <2.0.0'
Expand Down
1 change: 1 addition & 0 deletions angular_ast/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## 0.5.7
* Annotations may now have compound names (for example `@foo.bar`).

* It is now an error to use `@deferred` on a `<template>` tag or combined with
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 <misc@dartlang.org>
homepage: https://github.com/dart-lang/angular
description: Parser and utilities for AngularDart templates
version: 0.5.6
version: 0.5.7

environment:
sdk: ">=2.1.0-dev.5.0 <3.0.0"
Expand Down
2 changes: 2 additions & 0 deletions angular_compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 0.4.1

* Catches an (invalid) `null` token of a provider and throws a better error.

* Catches an (invalid) `null` value of the function for `FactoryProvider`.
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 <misc@dartlang.org>
homepage: https://github.com/dart-lang/angular
description: Compiler for AngularDart.
version: 0.4.0
version: 0.4.1

environment:
sdk: ">=2.1.0-dev.5.0 <3.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 @@
## 2.1.0

### New Features

* `PatternValidator` now has a `pattern` input. This allows the `pattern`
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 <misc@dartlang.org>
homepage: https://github.com/dart-lang/angular
description: Forms framework for AngularDart.
version: 2.0.0
version: 2.1.0

environment:
sdk: ">=2.1.0-dev.5.0 <3.0.0"

dependencies:
angular: ^5.0.0
angular: ^5.1.0
meta: ^1.1.4

dev_dependencies:
angular_test: ^2.0.0
angular_test: ^2.1.0
build_runner: ^1.0.0
build_test: ^0.10.2+5
build_web_compilers: ^0.4.0+4
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+20

### Bug fixes

* Fixed a discrepancy between the href rendered by `RouterLinkDirective`, and
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 <misc@dartlang.org>
homepage: https://github.com/dart-lang/angular
description: Router for AngularDart.
version: 2.0.0-alpha+19
version: 2.0.0-alpha+20

environment:
sdk: ">=2.1.0-dev.5.0 <3.0.0"

dependencies:
angular: ^5.0.0
angular: ^5.1.0
collection: ^1.14.5
js: ^0.6.0
meta: ^1.1.4

dev_dependencies:
async: ^2.0.3
angular_test: ^2.0.0
angular_test: ^2.1.0
build_runner: ^1.0.0
build_test: ^0.10.2+5
build_web_compilers: ^0.4.0+4
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.1.0

### New Features

* Supported `beforeComponentCreated(Injector)` when creating fixture to allow
using `injector` to set up prerequisite data for testing from DI.

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,13 +2,13 @@ name: angular_test
author: Dart Team <misc@dartlang.org>
homepage: https://github.com/dart-lang/angular
description: Testing runner and library for AngularDart
version: 2.0.0
version: 2.1.0

environment:
sdk: ">=2.1.0-dev.5.0 <3.0.0"

dependencies:
angular: ^5.0.0
angular: ^5.1.0
meta: ^1.1.4

dev_dependencies:
Expand Down

0 comments on commit 714c5de

Please sign in to comment.