Skip to content

Commit

Permalink
Bump version to 1.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Lymia committed Oct 3, 2022
1 parent f8f2f57 commit 357dfde
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
4 changes: 4 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 1.0.12 (2022-10-02)
* Updated darling version to reduce compile times when combined with other
crates. (Thanks @AlexTMjugador)

# Version 1.0.11 (2022-04-12)
* Added support for explicitly specifying the internal representation of
`EnumSet<T>` using the `#[enumset(repr = "...")]` annotation.
Expand Down
16 changes: 8 additions & 8 deletions enumset/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "enumset"
version = "1.0.11"
version = "1.0.12"
authors = ["Alissa Rao <lymia@lymiahugs.com>"]
edition = "2018"

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

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

[dev-dependencies]
bincode = { version = "1.0", features = ["i128"] }
serde_derive = "1.0.91"
serde_json = "1.0.39"
trybuild = "1.0.24"
rustversion = "1.0.2"
bincode = { version = "1", features = ["i128"] }
serde_derive = "1"
serde_json = "1"
trybuild = "1"
rustversion = "1"
6 changes: 3 additions & 3 deletions 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.0"
version = "0.6.1"
authors = ["Alissa Rao <lymia@lymiahugs.com>"]
edition = "2018"

Expand All @@ -18,8 +18,8 @@ proc-macro = true
serde = []

[dependencies]
darling = { version = "0.14.1", default-features = false }
darling = { version = "0.14", default-features = false }
syn = "1"
quote = "1"
proc-macro2 = "1"
proc-macro-crate = { version = "1.1.3", optional = true }
proc-macro-crate = { version = "1", optional = true }

0 comments on commit 357dfde

Please sign in to comment.