Skip to content

Commit

Permalink
Bump version to 1.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Lymia committed Apr 12, 2022
1 parent cdbb8df commit e90bc60
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Version 1.0.11 (2022-04-12)
* Added support for explicitly specifying the internal representation of
`EnumSet<T>` using the `#[enumset(repr = "...")]` annotation.
(Thanks @ahcodedthat)
* Added new functions for directly converting an EnumSet to and from its
internal representation, when it is explicitly specified.
(Thanks @ahcodedthat)
* Added new `from_*_unchecked` functions that unsafely convert a value into
an `EnumSet<T>` without checking if only valid bits are set.

# Version 1.0.10 (2022-04-05)
* The `proc-macro-crate` support has been locked behind the `std` flag and
version `1.0.9` has been yanked due to a regression that causes enumset to
Expand Down
4 changes: 2 additions & 2 deletions enumset/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "enumset"
version = "1.0.10"
version = "1.0.11"
authors = ["Alissa Rao <lymia@lymiahugs.com>"]
edition = "2018"

Expand All @@ -24,7 +24,7 @@ alloc = []
std = ["alloc", "enumset_derive/proc-macro-crate"]

[dependencies]
enumset_derive = { version = "0.5.7", path = "../enumset_derive" }
enumset_derive = { version = "0.6.0", path = "../enumset_derive" }
serde2 = { package = "serde", version = "1.0.91", default-features = false, optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion enumset_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "enumset_derive"
version = "0.5.7"
version = "0.6.0"
authors = ["Alissa Rao <lymia@lymiahugs.com>"]
edition = "2018"

Expand Down

0 comments on commit e90bc60

Please sign in to comment.