Skip to content

Commit

Permalink
prepare for 2.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus committed May 18, 2023
1 parent 30dcb1b commit 0d467c7
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 26 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 = "sval"
version = "2.3.0"
version = "2.3.1"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand Down Expand Up @@ -37,7 +37,7 @@ alloc = []
derive = ["dep:sval_derive"]

[dependencies.sval_derive]
version = "2.3.0"
version = "2.3.1"
path = "derive"
optional = true

Expand Down
10 changes: 5 additions & 5 deletions buffer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sval_buffer"
version = "2.3.0"
version = "2.3.1"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand All @@ -20,17 +20,17 @@ std = ["alloc", "sval/std"]
alloc = ["sval/alloc"]

[dependencies.sval]
version = "2.3.0"
version = "2.3.1"
path = "../"

[dependencies.sval_ref]
version = "2.3.0"
version = "2.3.1"
path = "../ref"

[dev-dependencies.sval_derive]
version = "2.3.0"
version = "2.3.1"
path = "../derive"

[dev-dependencies.sval_test]
version = "2.3.0"
version = "2.3.1"
path = "../test"
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sval_derive"
version = "2.3.0"
version = "2.3.1"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand Down
4 changes: 2 additions & 2 deletions dynamic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sval_dynamic"
version = "2.3.0"
version = "2.3.1"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand All @@ -12,5 +12,5 @@ keywords = ["serialization", "no_std"]
categories = ["encoding", "no-std"]

[dependencies.sval]
version = "2.3.0"
version = "2.3.1"
path = "../"
4 changes: 2 additions & 2 deletions fmt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sval_fmt"
version = "2.3.0"
version = "2.3.1"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand All @@ -19,7 +19,7 @@ std = ["alloc", "sval/std"]
alloc = ["sval/alloc"]

[dependencies.sval]
version = "2.3.0"
version = "2.3.1"
path = "../"

[dependencies.ryu]
Expand Down
4 changes: 2 additions & 2 deletions json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sval_json"
version = "2.3.0"
version = "2.3.1"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand All @@ -19,7 +19,7 @@ std = ["alloc", "sval/std"]
alloc = ["sval/alloc"]

[dependencies.sval]
version = "2.3.0"
version = "2.3.1"
path = "../"

[dependencies.ryu]
Expand Down
6 changes: 3 additions & 3 deletions ref/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sval_ref"
version = "2.3.0"
version = "2.3.1"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand All @@ -16,9 +16,9 @@ std = ["alloc", "sval/std"]
alloc = ["sval/alloc"]

[dependencies.sval]
version = "2.3.0"
version = "2.3.1"
path = "../"

[dev-dependencies.sval_test]
version = "2.3.0"
version = "2.3.1"
path = "../test"
8 changes: 4 additions & 4 deletions serde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sval_serde"
version = "2.3.0"
version = "2.3.1"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand All @@ -19,16 +19,16 @@ std = ["alloc", "serde/std", "sval/std", "sval_buffer/std"]
alloc = ["serde/alloc", "sval/alloc", "sval_buffer/alloc"]

[dependencies.sval]
version = "2.3.0"
version = "2.3.1"
path = "../"

[dependencies.sval_buffer]
version = "2.3.0"
version = "2.3.1"
path = "../buffer"
default-features = false

[dependencies.sval_fmt]
version = "2.3.0"
version = "2.3.1"
path = "../fmt"

[dependencies.serde]
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ Add `sval` to your `Cargo.toml`:
```toml
[dependencies.sval]
version = "2.3.0"
version = "2.3.1"
```
By default, `sval` doesn't depend on Rust's standard library or integrate
with its collection types. To include them, add the `alloc` or `std` features:
```toml
[dependencies.sval]
version = "2.3.0"
version = "2.3.1"
features = ["std"]
```
Expand Down
6 changes: 3 additions & 3 deletions test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sval_test"
version = "2.3.0"
version = "2.3.1"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand All @@ -12,10 +12,10 @@ keywords = ["serialization", "no_std"]
categories = ["encoding", "no-std"]

[dependencies.sval]
version = "2.3.0"
version = "2.3.1"
path = "../"
features = ["std"]

[dev-dependencies.sval_dynamic]
version = "2.3.0"
version = "2.3.1"
path = "../dynamic"

0 comments on commit 0d467c7

Please sign in to comment.