| OLD | NEW |
| 1 # 1.2.3 |
| 2 |
| 3 * Addressed three strong mode warnings. |
| 4 |
| 1 # 1.2.2 | 5 # 1.2.2 |
| 2 | 6 |
| 3 * Make the package analyze under strong mode and compile with the DDC (Dart Dev | 7 * Make the package analyze under strong mode and compile with the DDC (Dart Dev |
| 4 Compiler). Fix two issues with a private subclass of `VersionConstraint` | 8 Compiler). Fix two issues with a private subclass of `VersionConstraint` |
| 5 having different types for overridden methods. | 9 having different types for overridden methods. |
| 6 | 10 |
| 7 # 1.2.1 | 11 # 1.2.1 |
| 8 | 12 |
| 9 * Allow version ranges like `>=1.2.3-dev.1 <1.2.3` to match pre-release versions | 13 * Allow version ranges like `>=1.2.3-dev.1 <1.2.3` to match pre-release versions |
| 10 of `1.2.3`. Previously, these didn't match, since the pre-release versions had | 14 of `1.2.3`. Previously, these didn't match, since the pre-release versions had |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 breaking changes after a given version. | 40 breaking changes after a given version. |
| 37 | 41 |
| 38 * Add `new VersionConstraint.compatibleWith()`, which returns a range covering | 42 * Add `new VersionConstraint.compatibleWith()`, which returns a range covering |
| 39 all versions compatible with a given version. | 43 all versions compatible with a given version. |
| 40 | 44 |
| 41 * Add a custom `VersionRange.hashCode` to make it properly hashable. | 45 * Add a custom `VersionRange.hashCode` to make it properly hashable. |
| 42 | 46 |
| 43 # 1.0.0 | 47 # 1.0.0 |
| 44 | 48 |
| 45 * Initial release. | 49 * Initial release. |
| OLD | NEW |