|
1 | | -* **0.11.0** |
2 | | - * Redesign `GenericSequence` with an emphasis on use in generic type parameters. |
| 1 | +* **`0.12.0`** |
| 2 | + * Allow trailing commas in `arr!` macro. |
| 3 | + * **BREAKING**: Serialize `GenericArray` using `serde` tuples, instead of variable-length sequences. This may not be compatible with old serialized data. |
| 4 | + |
| 5 | +* **`0.11.0`** |
| 6 | + * **BREAKING** Redesign `GenericSequence` with an emphasis on use in generic type parameters. |
3 | 7 | * Add `MappedGenericSequence` and `FunctionalSequence` |
4 | 8 | * Implements optimized `map`, `zip` and `fold` for `GenericArray`, `&GenericArray` and `&mut GenericArray` |
5 | | - * Remove `map_ref`, `zip_ref` and `map_slice` |
| 9 | + * **BREAKING** Remove `map_ref`, `zip_ref` and `map_slice` |
6 | 10 | * `map_slice` is now equivalent to `GenericArray::from_iter(slice.iter().map(...))` |
7 | 11 | * **`0.10.0`** |
8 | 12 | * Add `GenericSequence`, `Lengthen`, `Shorten`, `Split` and `Concat` traits. |
|
17 | 21 | * Update `typenum` |
18 | 22 | * Make macro `arr!` non-cloning |
19 | 23 | * Implement `From<[T; N]>` up to `N=32` |
20 | | - * Fix #45 |
| 24 | + * Fix #45 |
21 | 25 | * **`0.7.0`** |
22 | 26 | * Upgrade `serde` to `0.9` |
23 | 27 | * Make `serde` with `no_std` |
24 | 28 | * Implement `PartialOrd`/`Ord` for `GenericArray` |
25 | 29 | * **`0.6.0`** |
26 | | - * Fixed #30 |
| 30 | + * Fixed #30 |
27 | 31 | * Implement `Default` for `GenericArray` |
28 | 32 | * Implement `LowerHex` and `UpperHex` for `GenericArray<u8, N>` |
29 | 33 | * Use `precision` formatting field in hex representation |
|
33 | 37 | * `no_std` and `core` for crate. |
34 | 38 | * **`0.5.0`** |
35 | 39 | * Update `serde` |
36 | | - * remove `no_std` feature, fixed #19 |
| 40 | + * remove `no_std` feature, fixed #19 |
37 | 41 | * **`0.4.0`** |
38 | 42 | * Re-export `typenum` |
39 | 43 | * **`0.3.0`** |
|
0 commit comments