OLD | NEW |
| 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. |
OLD | NEW |