OLD | NEW |
| 1 ## 0.12.2 |
| 2 * Updated `@protected` to include implemented interfaces (linter#252). |
| 3 |
1 ## 0.12.1 | 4 ## 0.12.1 |
2 * Fixed markdown in dartdocs. | 5 * Fixed markdown in dartdocs. |
3 | 6 |
4 ## 0.12.0 | 7 ## 0.12.0 |
5 * Introduce `@optionalTypeArgs` annotation for classes whose type arguments are
to be treated as optional. | 8 * Introduce `@optionalTypeArgs` annotation for classes whose type arguments are
to be treated as optional. |
6 | 9 |
7 ## 0.11.0 | 10 ## 0.11.0 |
8 * Added new `Required` constructor with a means to specify a reason to explain w
hy a parameter is required. | 11 * Added new `Required` constructor with a means to specify a reason to explain w
hy a parameter is required. |
9 | 12 |
10 ## 0.10.0 | 13 ## 0.10.0 |
11 * Introduce `@factory` annotation for methods that must either be abstract or | 14 * Introduce `@factory` annotation for methods that must either be abstract or |
12 must return a newly allocated object. | 15 must return a newly allocated object. |
13 * Introduce `@literal` annotation that indicates that any invocation of a | 16 * Introduce `@literal` annotation that indicates that any invocation of a |
14 constructor must use the keyword `const` unless one or more of the | 17 constructor must use the keyword `const` unless one or more of the |
15 arguments to the constructor is not a compile-time constant. | 18 arguments to the constructor is not a compile-time constant. |
16 | 19 |
17 ## 0.9.0 | 20 ## 0.9.0 |
18 * Introduce `@protected` annotation for members that must only be called from | 21 * Introduce `@protected` annotation for members that must only be called from |
19 instance members of subclasses. | 22 instance members of subclasses. |
20 * Introduce `@required` annotation for optional parameters that should be treate
d | 23 * Introduce `@required` annotation for optional parameters that should be treate
d |
21 as required. | 24 as required. |
22 * Introduce `@mustCallSuper` annotation for methods that must be invoked by all | 25 * Introduce `@mustCallSuper` annotation for methods that must be invoked by all |
23 overriding methods. | 26 overriding methods. |
OLD | NEW |