Skip to content

Commit

Permalink
Release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
udoprog committed Apr 26, 2023
1 parent 1fb0880 commit 07e4e90
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fixed-map"
version = "0.8.3"
version = "0.9.0"
authors = ["John-John Tedro <[email protected]>", "Peter Jaszkowiak <[email protected]>"]
edition = "2021"
rust-version = "1.65"
Expand All @@ -21,7 +21,7 @@ default = ["hashbrown", "std"]
std = ["serde?/std"]

[dependencies]
fixed-map-derive = { version = "=0.8.3", path = "fixed-map-derive" }
fixed-map-derive = { version = "=0.9.0", path = "fixed-map-derive" }
hashbrown = { version = "0.13.2", optional = true }
serde = { version = "1.0.145", optional = true, default_features = false }

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Add `fixed-map` to your `Cargo.toml`:

```toml
[dependencies]
fixed-map = "0.8.3"
fixed-map = "0.9.0"
```

Anything used as a key in either a [`Map`] or a [`Set`] needs to implement
Expand Down
5 changes: 1 addition & 4 deletions fixed-map-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fixed-map-derive"
version = "0.8.3"
version = "0.9.0"
authors = ["John-John Tedro <[email protected]>"]
edition = "2018"
rust-version = "1.65"
Expand All @@ -22,8 +22,5 @@ syn = { version = "2.0.15", features = ["full"] }
quote = "1.0.26"
proc-macro2 = "1.0.56"

[dev-dependencies]
fixed-map = { version = "=0.8.3", path = ".." }

[lib]
proc-macro = true
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! ```toml
//! [dependencies]
//! fixed-map = "0.8.3"
//! fixed-map = "0.9.0"
//! ```
//!
//! Anything used as a key in either a [`Map`] or a [`Set`] needs to implement
Expand Down

0 comments on commit 07e4e90

Please sign in to comment.