| OLD | NEW |
| 1 ## 1.0.2 |
| 2 * Introduce `@visibleForTesting` annotation for declarations that may be referen
ced only in the library or in a test. |
| 3 |
| 1 ## 1.0.1 | 4 ## 1.0.1 |
| 2 * Updated `@factory` to allow statics and methods returning `null`. | 5 * Updated `@factory` to allow statics and methods returning `null`. |
| 3 | 6 |
| 4 ## 1.0.0 | 7 ## 1.0.0 |
| 5 * First stable API release. | 8 * First stable API release. |
| 6 | 9 |
| 7 ## 0.12.2 | 10 ## 0.12.2 |
| 8 * Updated `@protected` to include implemented interfaces (linter#252). | 11 * Updated `@protected` to include implemented interfaces (linter#252). |
| 9 | 12 |
| 10 ## 0.12.1 | 13 ## 0.12.1 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 constructor must use the keyword `const` unless one or more of the | 26 constructor must use the keyword `const` unless one or more of the |
| 24 arguments to the constructor is not a compile-time constant. | 27 arguments to the constructor is not a compile-time constant. |
| 25 | 28 |
| 26 ## 0.9.0 | 29 ## 0.9.0 |
| 27 * Introduce `@protected` annotation for members that must only be called from | 30 * Introduce `@protected` annotation for members that must only be called from |
| 28 instance members of subclasses. | 31 instance members of subclasses. |
| 29 * Introduce `@required` annotation for optional parameters that should be treate
d | 32 * Introduce `@required` annotation for optional parameters that should be treate
d |
| 30 as required. | 33 as required. |
| 31 * Introduce `@mustCallSuper` annotation for methods that must be invoked by all | 34 * Introduce `@mustCallSuper` annotation for methods that must be invoked by all |
| 32 overriding methods. | 35 overriding methods. |
| OLD | NEW |