| OLD | NEW |
| 1 ## 1.4.0 |
| 2 |
| 3 * Add `StreamChannel.cast()`, which soundly coerces the generic type of a |
| 4 channel. |
| 5 |
| 6 * Add `StreamChannelTransformer.typed()`, which soundly coerces the generic type |
| 7 of a transformer. |
| 8 |
| 1 ## 1.3.2 | 9 ## 1.3.2 |
| 2 | 10 |
| 3 * Fix all strong-mode errors and warnings. | 11 * Fix all strong-mode errors and warnings. |
| 4 | 12 |
| 5 ## 1.3.1 | 13 ## 1.3.1 |
| 6 | 14 |
| 7 * Make `IsolateChannel` slightly more efficient. | 15 * Make `IsolateChannel` slightly more efficient. |
| 8 | 16 |
| 9 * Make `MultiChannel` follow the stream channel rules. | 17 * Make `MultiChannel` follow the stream channel rules. |
| 10 | 18 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 | 43 |
| 36 ## 1.0.1 | 44 ## 1.0.1 |
| 37 | 45 |
| 38 * Fix `MultiChannel`'s constructor to take a `StreamChannel`. This is | 46 * Fix `MultiChannel`'s constructor to take a `StreamChannel`. This is |
| 39 technically a breaking change, but since 1.0.0 was only released an hour ago, | 47 technically a breaking change, but since 1.0.0 was only released an hour ago, |
| 40 we're treating it as a bug fix. | 48 we're treating it as a bug fix. |
| 41 | 49 |
| 42 ## 1.0.0 | 50 ## 1.0.0 |
| 43 | 51 |
| 44 * Initial version | 52 * Initial version |
| OLD | NEW |