Skip to content

Commit

Permalink
prepare for 2.0.3 release (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus authored Apr 9, 2023
1 parent 6cd8317 commit 2f10faa
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sval"
version = "2.0.2"
version = "2.0.3"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand Down
8 changes: 4 additions & 4 deletions buffer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sval_buffer"
version = "2.0.2"
version = "2.0.3"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand All @@ -20,13 +20,13 @@ std = ["alloc", "sval/std"]
alloc = ["sval/alloc"]

[dependencies.sval]
version = "2.0.2"
version = "2.0.3"
path = "../"

[dev-dependencies.sval_derive]
version = "2.0.2"
version = "2.0.3"
path = "../derive"

[dev-dependencies.sval_test]
version = "2.0.2"
version = "2.0.3"
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.0.2"
version = "2.0.3"
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.0.2"
version = "2.0.3"
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.0.2"
version = "2.0.3"
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.0.2"
version = "2.0.3"
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.0.2"
version = "2.0.3"
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.0.2"
version = "2.0.3"
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.0.2"
version = "2.0.3"
path = "../"

[dependencies.ryu]
Expand Down
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.0.2"
version = "2.0.3"
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.0.2"
version = "2.0.3"
path = "../"

[dependencies.sval_buffer]
version = "2.0.2"
version = "2.0.3"
path = "../buffer"
default-features = false

[dependencies.sval_fmt]
version = "2.0.2"
version = "2.0.3"
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.0.2"
version = "2.0.3"
```
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.0.2"
version = "2.0.3"
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.0.2"
version = "2.0.3"
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.0.2"
version = "2.0.3"
path = "../"
features = ["std"]

[dev-dependencies.sval_dynamic]
version = "2.0.2"
version = "2.0.3"
path = "../dynamic"

0 comments on commit 2f10faa

Please sign in to comment.