| OLD | NEW |
| 1 ## 2.0.0 |
| 2 * Remove deprecated public `result.dart` and `stream_zip.dart` libraries and |
| 3 deprecated classes `ReleaseStreamTransformer` and `CaptureStreamTransformer`. |
| 4 |
| 5 * Add `captureAll` and `flattenList` static methods to `Result`. |
| 6 |
| 7 * Change `ErrorResult` to not be generic and always be a `Result<Null>`. |
| 8 That makes an error independent of the type of result it occurs instead of. |
| 9 |
| 1 ## 1.13.3 | 10 ## 1.13.3 |
| 2 | 11 |
| 3 * Make `TypeSafeStream` extend `Stream` instead of implementing it. This ensures | 12 * Make `TypeSafeStream` extend `Stream` instead of implementing it. This ensures |
| 4 that new methods on `Stream` are automatically picked up, they will go through | 13 that new methods on `Stream` are automatically picked up, they will go through |
| 5 the `listen` method which type-checks every event. | 14 the `listen` method which type-checks every event. |
| 6 | 15 |
| 7 ## 1.13.2 | 16 ## 1.13.2 |
| 8 | 17 |
| 9 * Fix a type-warning. | 18 * Fix a type-warning. |
| 10 | 19 |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 - Added a `StreamSplitter` class for splitting a stream into multiple new | 190 - Added a `StreamSplitter` class for splitting a stream into multiple new |
| 182 streams. | 191 streams. |
| 183 | 192 |
| 184 ## 1.1.1 | 193 ## 1.1.1 |
| 185 | 194 |
| 186 - Updated SDK version constraint to at least 1.9.0. | 195 - Updated SDK version constraint to at least 1.9.0. |
| 187 | 196 |
| 188 ## 1.1.0 | 197 ## 1.1.0 |
| 189 | 198 |
| 190 - ChangeLog starts here. | 199 - ChangeLog starts here. |
| OLD | NEW |