Skip to content
This repository was archived by the owner on May 20, 2023. It is now read-only.

Commit 45e7179

Browse files
committed
Prepare to publish version 0.9.0-alpha+1
PiperOrigin-RevId: 176564524
1 parent 8c68b2c commit 45e7179

File tree

3 files changed

+39
-10
lines changed

3 files changed

+39
-10
lines changed

CHANGELOG.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@
44
> 5.0.0-alpha+1. The alpha tag represents the evolving nature of the AngularDart
55
> api, not code quality (5.0.0-alpha+1 is used in production Google apps).
66
7+
**NOTE**: As of `angular 5.0.0-alpha+1` [`dependency_overrides`][dep_overrides]
8+
are **required**:
9+
10+
```yaml
11+
dependency_overrides:
12+
analyzer: ^0.31.0-alpha.1
13+
```
14+
15+
This is because Angular is starting to use and support the Dart 2.0.0 SDK, which
16+
is evolving. We expect to no longer require overrides once we are at a beta
17+
release, but this is unlikely until sometime in early 2018.
18+
19+
[dep_overrides]: https://www.dartlang.org/tools/pub/dependencies#dependency-overrides
20+
721
* Add Material Menu component.
822
* Material Auto Suggest Input: Replace ngOnChanges(\_) with ngAfterChanges.
923
* Material Button:
@@ -12,9 +26,10 @@
1226
* Add mixins to set icon button padding.
1327
* Material Chips: Update margin on dense theme.
1428
* Material Fab: Update size mixin.
15-
* Material Input: Use markForChanges on inputs since they are being set by a
16-
directive and not the template and so change detection doesn't happen
17-
automatically.
29+
* Material Input:
30+
* Use markForChanges on inputs since they are being set by a directive and
31+
not the template and so change detection doesn't happen automatically.
32+
* Allow numerical values to be internationalized in number validators.
1833
* Material Select:
1934
* Add mixin to set select item padding.
2035
* Add mixin to set selected item color.

README.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ This productive and stable set of widgets, contributed to by hundreds of
77
Googlers, make debugging and deploying your app easier. Strict latency and
88
testing policies make these widgets an excellent fit for AngularDart projects.
99

10+
**NOTE**: As of `angular 5.0.0-alpha+1` [`dependency_overrides`][dep_overrides]
11+
are **required**:
12+
13+
```yaml
14+
dependency_overrides:
15+
analyzer: ^0.31.0-alpha.1
16+
```
17+
18+
This is because Angular is starting to use and support the Dart 2.0.0 SDK, which
19+
is evolving. We expect to no longer require overrides once we are at a beta
20+
release, but this is unlikely until sometime in early 2018.
21+
22+
[dep_overrides]: https://www.dartlang.org/tools/pub/dependencies#dependency-overrides
23+
1024
Only a small fragment of all the components is available right now. We want
1125
developers to be able to use the package as soon as possible.
1226
@@ -33,8 +47,8 @@ developers to be able to use the package as soon as possible.
3347
* ✓ `<material-select>`
3448
* ✓ `<material-tree>`
3549
* ✓ `<material-auto-suggest-input>`
50+
* ✓ `<material-menu>`
3651
* ☐ `<material-date-range-picker>`
37-
*`<material-menu>`
3852
* many more, including a fast table
3953

4054
At this time we are not taking pull requests, but please
@@ -105,4 +119,4 @@ imports in your Sass files.
105119
## Project Roadmap
106120

107121
Our current work is summarized in
108-
[issue 142](https://github.com/dart-lang/angular_components/issues/142).
122+
[issue 142](https://github.com/dart-lang/angular_components/issues/193).

pubspec.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ description: >
66
homepage: https://webdev.dartlang.org/components
77
author: Dart Team <[email protected]>
88
environment:
9-
sdk: '>=1.24.0 <2.0.0'
9+
sdk: '>=2.0.0-dev.3.0 <2.0.0'
1010
dependencies:
11-
angular: 5.0.0-alpha
12-
angular_forms: 1.0.1-alpha
11+
angular: 5.0.0-alpha+1
12+
angular_forms: 1.0.1-alpha+1
1313
collection: ^1.14.0
1414
fixnum: ^0.10.5
1515
intl: '>=0.14.0 <0.16.0'
1616
js: ^0.6.1
1717
logging: ^0.11.2
1818
meta: ^1.0.4
19-
observable: '>=0.14.0+1 <0.21.0'
19+
observable: '>=0.17.0+1 <0.21.0'
2020
perf_api: ^0.1.0
21-
quiver: '>=0.22.0 <0.26.0'
21+
quiver: '>=0.24.0 <0.26.0'
2222
sass_builder: ^1.0.1
2323
uuid: ^0.5.3
2424
transformers:

0 commit comments

Comments
 (0)