Skip to content

Commit 07e4e90

Browse files
committed
Release 0.9.0
1 parent 1fb0880 commit 07e4e90

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fixed-map"
3-
version = "0.8.3"
3+
version = "0.9.0"
44
authors = ["John-John Tedro <[email protected]>", "Peter Jaszkowiak <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.65"
@@ -21,7 +21,7 @@ default = ["hashbrown", "std"]
2121
std = ["serde?/std"]
2222

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Add `fixed-map` to your `Cargo.toml`:
1919

2020
```toml
2121
[dependencies]
22-
fixed-map = "0.8.3"
22+
fixed-map = "0.9.0"
2323
```
2424

2525
Anything used as a key in either a [`Map`] or a [`Set`] needs to implement

fixed-map-derive/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fixed-map-derive"
3-
version = "0.8.3"
3+
version = "0.9.0"
44
authors = ["John-John Tedro <[email protected]>"]
55
edition = "2018"
66
rust-version = "1.65"
@@ -22,8 +22,5 @@ syn = { version = "2.0.15", features = ["full"] }
2222
quote = "1.0.26"
2323
proc-macro2 = "1.0.56"
2424

25-
[dev-dependencies]
26-
fixed-map = { version = "=0.8.3", path = ".." }
27-
2825
[lib]
2926
proc-macro = true

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
//!
1717
//! ```toml
1818
//! [dependencies]
19-
//! fixed-map = "0.8.3"
19+
//! fixed-map = "0.9.0"
2020
//! ```
2121
//!
2222
//! Anything used as a key in either a [`Map`] or a [`Set`] needs to implement

0 commit comments

Comments
 (0)