]> git.lizzy.rs Git - enumset.git/blob - RELEASES.md
Bump version to 0.3.18.
[enumset.git] / RELEASES.md
1 # Version 0.3.18 (2019-03-11)
2 * Fix an off-by-one error causing enums with 9, 17, 33, etc variants to behave
3   unexpectedly.
4
5 # Version 0.3.17 (2019-03-11)
6 * Add an `#[enumset_serialize_as_list]` attribute to cause the `Deserialize`
7   and `Serialize` implementations for `EnumSet<T>` to serialize it as a seq
8   of `T`s rather than an integer bitmask.
9
10 # Version 0.3.16 (2019-02-04)
11 * Added `Default` implementation for `EnumSet<T>` that returns an empty map.
12
13 # Version 0.3.15 (2019-01-08)
14 * Added optional `serde` support.
15
16 # Version 0.3.14 (2018-11-09)
17
18 * Deprecated the `enum_set_type!` macro in favor of a custom derive.
19 * Added a way to avoid the automatic operator overloads derived from
20   EnumSetTypes.
21 * Fixed a major issue that would have prevented `enumset` from being used in
22   `#[no_std]` crates.
23 * Minimum required version is now 1.30.0+. There should be no more need to bump
24   the minimum Rust version in the forseeable future.
25
26 # Prior versions
27
28 No release notes were kept for prior versions.