| OLD | NEW |
| 1 ## 1.5.0 |
| 2 |
| 3 * Add `new StreamChannel.withCloseGuarantee()` to provide the specific guarantee |
| 4 that closing the sink causes the stream to close before it emits any more |
| 5 events. This is the only guarantee that isn't automatically preserved when |
| 6 transforming a channel. |
| 7 |
| 8 * `StreamChannelTransformer`s provided by the `stream_channel` package now |
| 9 properly provide the guarantee that closing the sink causes the stream to |
| 10 close before it emits any more events |
| 11 |
| 1 ## 1.4.0 | 12 ## 1.4.0 |
| 2 | 13 |
| 3 * Add `StreamChannel.cast()`, which soundly coerces the generic type of a | 14 * Add `StreamChannel.cast()`, which soundly coerces the generic type of a |
| 4 channel. | 15 channel. |
| 5 | 16 |
| 6 * Add `StreamChannelTransformer.typed()`, which soundly coerces the generic type | 17 * Add `StreamChannelTransformer.typed()`, which soundly coerces the generic type |
| 7 of a transformer. | 18 of a transformer. |
| 8 | 19 |
| 9 ## 1.3.2 | 20 ## 1.3.2 |
| 10 | 21 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 | 54 |
| 44 ## 1.0.1 | 55 ## 1.0.1 |
| 45 | 56 |
| 46 * Fix `MultiChannel`'s constructor to take a `StreamChannel`. This is | 57 * Fix `MultiChannel`'s constructor to take a `StreamChannel`. This is |
| 47 technically a breaking change, but since 1.0.0 was only released an hour ago, | 58 technically a breaking change, but since 1.0.0 was only released an hour ago, |
| 48 we're treating it as a bug fix. | 59 we're treating it as a bug fix. |
| 49 | 60 |
| 50 ## 1.0.0 | 61 ## 1.0.0 |
| 51 | 62 |
| 52 * Initial version | 63 * Initial version |
| OLD | NEW |