Skip to content

Commit 04fe34c

Browse files
committed
Update CHANGELOG and bump version
1 parent ad45fd5 commit 04fe34c

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
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.
37
* Add `MappedGenericSequence` and `FunctionalSequence`
48
* 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`
610
* `map_slice` is now equivalent to `GenericArray::from_iter(slice.iter().map(...))`
711
* **`0.10.0`**
812
* Add `GenericSequence`, `Lengthen`, `Shorten`, `Split` and `Concat` traits.
@@ -17,13 +21,13 @@
1721
* Update `typenum`
1822
* Make macro `arr!` non-cloning
1923
* Implement `From<[T; N]>` up to `N=32`
20-
* Fix #45
24+
* Fix #45
2125
* **`0.7.0`**
2226
* Upgrade `serde` to `0.9`
2327
* Make `serde` with `no_std`
2428
* Implement `PartialOrd`/`Ord` for `GenericArray`
2529
* **`0.6.0`**
26-
* Fixed #30
30+
* Fixed #30
2731
* Implement `Default` for `GenericArray`
2832
* Implement `LowerHex` and `UpperHex` for `GenericArray<u8, N>`
2933
* Use `precision` formatting field in hex representation
@@ -33,7 +37,7 @@
3337
* `no_std` and `core` for crate.
3438
* **`0.5.0`**
3539
* Update `serde`
36-
* remove `no_std` feature, fixed #19
40+
* remove `no_std` feature, fixed #19
3741
* **`0.4.0`**
3842
* Re-export `typenum`
3943
* **`0.3.0`**

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "generic-array"
4-
version = "0.11.1"
4+
version = "0.12.0"
55
authors = [ "Bartłomiej Kamiński <[email protected]>", "Aaron Trent <[email protected]>" ]
66

77
description = "Generic types implementing functionality of arrays"
@@ -22,10 +22,10 @@ travis-ci = { repository = "fizyk20/generic-array" }
2222
name = "generic_array"
2323

2424
[dependencies]
25-
typenum = "1.9"
25+
typenum = "1.10"
2626
serde = { version = "1.0", optional = true, default-features = false }
2727

2828
[dev_dependencies]
2929
# this can't yet be made optional, see https://github.com/rust-lang/cargo/issues/1596
3030
serde_json = "1.0"
31-
bincode = "1.0.1"
31+
bincode = "1.0"

0 commit comments

Comments
 (0)