Skip to content

Commit

Permalink
Bump version to v1.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Lymia committed May 1, 2023
1 parent a655adc commit 9313826
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2017-2020 Alissa Rao <[email protected]>
Copyright (c) 2017-2023 Alissa Rao <[email protected]>

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
7 changes: 7 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Version 1.0.13 (2023-05-01)
* Updated darling to version 0.20 and syn to version 2.0.
* Added a new `#[enumset(serialize_as_map)]` attribute to allow serializing
`EnumSet<T>` as a map of enum variants to boolean values.
(Thanks @LizzyFleckenstein03)
* Minimum required Rust version is now 1.56+, due to updates in dependencies.

# Version 1.0.12 (2022-10-02)
* Updated darling version to reduce compile times when combined with other
crates. (Thanks @AlexTMjugador)
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.12"
version = "1.0.13"
authors = ["Alissa Rao <[email protected]>"]
edition = "2021"

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

[dependencies]
enumset_derive = { version = "0.6.1", path = "../enumset_derive" }
enumset_derive = { version = "0.7.0", path = "../enumset_derive" }
serde2 = { package = "serde", version = "1", 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.6.1"
version = "0.7.0"
authors = ["Alissa Rao <[email protected]>"]
edition = "2021"

Expand Down

0 comments on commit 9313826

Please sign in to comment.