Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(806)

Side by Side Diff: pkg/meta/CHANGELOG.md

Issue 2067643002: Mark meta API as stable and bump to `1.0.0` (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: v_bump Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | pkg/meta/pubspec.yaml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 1.0.0
2 * First stable API release.
3
1 ## 0.12.2 4 ## 0.12.2
2 * Updated `@protected` to include implemented interfaces (linter#252). 5 * Updated `@protected` to include implemented interfaces (linter#252).
3 6
4 ## 0.12.1 7 ## 0.12.1
5 * Fixed markdown in dartdocs. 8 * Fixed markdown in dartdocs.
6 9
7 ## 0.12.0 10 ## 0.12.0
8 * Introduce `@optionalTypeArgs` annotation for classes whose type arguments are to be treated as optional. 11 * Introduce `@optionalTypeArgs` annotation for classes whose type arguments are to be treated as optional.
9 12
10 ## 0.11.0 13 ## 0.11.0
11 * Added new `Required` constructor with a means to specify a reason to explain w hy a parameter is required. 14 * Added new `Required` constructor with a means to specify a reason to explain w hy a parameter is required.
12 15
13 ## 0.10.0 16 ## 0.10.0
14 * Introduce `@factory` annotation for methods that must either be abstract or 17 * Introduce `@factory` annotation for methods that must either be abstract or
15 must return a newly allocated object. 18 must return a newly allocated object.
16 * Introduce `@literal` annotation that indicates that any invocation of a 19 * Introduce `@literal` annotation that indicates that any invocation of a
17 constructor must use the keyword `const` unless one or more of the 20 constructor must use the keyword `const` unless one or more of the
18 arguments to the constructor is not a compile-time constant. 21 arguments to the constructor is not a compile-time constant.
19 22
20 ## 0.9.0 23 ## 0.9.0
21 * Introduce `@protected` annotation for members that must only be called from 24 * Introduce `@protected` annotation for members that must only be called from
22 instance members of subclasses. 25 instance members of subclasses.
23 * Introduce `@required` annotation for optional parameters that should be treate d 26 * Introduce `@required` annotation for optional parameters that should be treate d
24 as required. 27 as required.
25 * Introduce `@mustCallSuper` annotation for methods that must be invoked by all 28 * Introduce `@mustCallSuper` annotation for methods that must be invoked by all
26 overriding methods. 29 overriding methods.
OLDNEW
« no previous file with comments | « no previous file | pkg/meta/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698