Skip to content

Commit 95d57f4

Browse files
committed
Add changelog
1 parent 49aed81 commit 95d57f4

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
* **0.11.0**
2+
* Redesign `GenericSequence` with an emphasis on use in generic type parameters.
3+
* Add `MappedGenericSequence` and `FunctionalSequence`
4+
* Implements optimized `map`, `zip` and `fold` for `GenericArray`, `&GenericArray` and `&mut GenericArray`
5+
* Remove `map_ref`, `zip_ref` and `map_slice`
6+
* `map_slice` is now equivalent to `GenericArray::from_iter(slice.iter().map(...))`
7+
* **`0.10.0`**
8+
* Add `GenericSequence`, `Lengthen`, `Shorten`, `Split` and `Concat` traits.
9+
* Redefine `transmute` to avert errors.
10+
* **`0.9.0`**
11+
* Rewrite construction methods to be well-defined in panic situations, correctly dropping elements.
12+
* `NoDrop` crate replaced by `ManuallyDrop` as it became stable in Rust core.
13+
* Add optimized `map`/`map_ref` and `zip`/`zip_ref` methods to `GenericArray`
14+
* **`0.8.0`**
15+
* Implement `AsRef`, `AsMut`, `Borrow`, `BorrowMut`, `Hash` for `GenericArray`
16+
* Update `serde` to `1.0`
17+
* Update `typenum`
18+
* Make macro `arr!` non-cloning
19+
* Implement `From<[T; N]>` up to `N=32`
20+
* Fix #45
21+
* **`0.7.0`**
22+
* Upgrade `serde` to `0.9`
23+
* Make `serde` with `no_std`
24+
* Implement `PartialOrd`/`Ord` for `GenericArray`
25+
* **`0.6.0`**
26+
* Fixed #30
27+
* Implement `Default` for `GenericArray`
28+
* Implement `LowerHex` and `UpperHex` for `GenericArray<u8, N>`
29+
* Use `precision` formatting field in hex representation
30+
* Add `as_slice`, `as_mut_slice`
31+
* Remove `GenericArray::new` in favor of `Default` trait
32+
* Add `from_slice` and `from_mut_slice`
33+
* `no_std` and `core` for crate.
34+
* **`0.5.0`**
35+
* Update `serde`
36+
* remove `no_std` feature, fixed #19
37+
* **`0.4.0`**
38+
* Re-export `typenum`
39+
* **`0.3.0`**
40+
* Implement `IntoIter` for `GenericArray`
41+
* Add `map` method
42+
* Add optional `serde` (de)serialization support feature.
43+
* **`< 0.3.0`**
44+
* Initial implementation in late 2015

0 commit comments

Comments
 (0)