Skip to content

Commit

Permalink
Release 0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
udoprog committed Apr 18, 2024
1 parent 4f8e465 commit f2d6e28
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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.9.3"
version = "0.9.4"
authors = ["John-John Tedro <[email protected]>", "Peter Jaszkowiak <[email protected]>"]
edition = "2021"
rust-version = "1.72"
Expand All @@ -21,7 +21,7 @@ default = ["hashbrown", "std"]
std = ["serde?/std"]

[dependencies]
fixed-map-derive = { version = "=0.9.3", path = "fixed-map-derive" }
fixed-map-derive = { version = "=0.9.4", 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.9.3"
fixed-map = "0.9.4"
```

Anything used as a key in either a [`Map`] or a [`Set`] needs to implement
Expand Down
2 changes: 1 addition & 1 deletion 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.9.3"
version = "0.9.4"
authors = ["John-John Tedro <[email protected]>"]
edition = "2018"
rust-version = "1.72"
Expand Down
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.9.3"
//! fixed-map = "0.9.4"
//! ```
//!
//! Anything used as a key in either a [`Map`] or a [`Set`] needs to implement
Expand Down

0 comments on commit f2d6e28

Please sign in to comment.