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