Skip to content

Commit

Permalink
Merge pull request #193 from sval-rs/cargo/2.12.0
Browse files Browse the repository at this point in the history
Prepare for 2.12.0 release
  • Loading branch information
KodrAus committed Mar 27, 2024
2 parents 7c02f48 + 90152c8 commit 0e84b9a
Show file tree
Hide file tree
Showing 13 changed files with 37 additions and 37 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.11.1"
version = "2.12.0"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand Down Expand Up @@ -43,7 +43,7 @@ alloc = []
derive = ["dep:sval_derive_macros"]

[dependencies.sval_derive_macros]
version = "2.11.1"
version = "2.12.0"
path = "derive_macros"
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.11.1"
version = "2.12.0"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand All @@ -21,17 +21,17 @@ alloc = ["sval/alloc"]
no_debug_assertions = []

[dependencies.sval]
version = "2.11.1"
version = "2.12.0"
path = "../"

[dependencies.sval_ref]
version = "2.11.1"
version = "2.12.0"
path = "../ref"

[dev-dependencies.sval_derive_macros]
version = "2.11.1"
version = "2.12.0"
path = "../derive_macros"

[dev-dependencies.sval_test]
version = "2.11.1"
version = "2.12.0"
path = "../test"
6 changes: 3 additions & 3 deletions derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sval_derive"
version = "2.11.1"
version = "2.12.0"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand All @@ -17,10 +17,10 @@ std = ["sval_flatten?/std"]
flatten = ["dep:sval_flatten", "sval_derive_macros/flatten"]

[dependencies.sval_derive_macros]
version = "2.11.1"
version = "2.12.0"
path = "../derive_macros"

[dependencies.sval_flatten]
version = "2.11.1"
version = "2.12.0"
path = "../flatten"
optional = true
2 changes: 1 addition & 1 deletion derive_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sval_derive_macros"
version = "2.11.1"
version = "2.12.0"
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.11.1"
version = "2.12.0"
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.11.1"
version = "2.12.0"
path = "../"
6 changes: 3 additions & 3 deletions flatten/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sval_flatten"
version = "2.11.1"
version = "2.12.0"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand All @@ -16,12 +16,12 @@ alloc = ["sval/alloc", "sval_buffer/alloc"]
std = ["alloc", "sval/std", "sval_buffer/std"]

[dependencies.sval]
version = "2.11.1"
version = "2.12.0"
path = "../"
default-features = false

[dependencies.sval_buffer]
version = "2.11.1"
version = "2.12.0"
path = "../buffer"
default-features = false

Expand Down
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.11.1"
version = "2.12.0"
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.11.1"
version = "2.12.0"
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.11.1"
version = "2.12.0"
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.11.1"
version = "2.12.0"
path = "../"

[dependencies.ryu]
Expand Down
10 changes: 5 additions & 5 deletions nested/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sval_nested"
version = "2.11.1"
version = "2.12.0"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand All @@ -21,18 +21,18 @@ alloc = ["sval/alloc", "sval_buffer/alloc"]
no_debug_assertions = []

[dependencies.sval]
version = "2.11.1"
version = "2.12.0"
path = "../"

[dependencies.sval_buffer]
version = "2.11.1"
version = "2.12.0"
path = "../buffer"
default-features = false

[dependencies.sval_ref]
version = "2.11.1"
version = "2.12.0"
path = "../ref"

[dev-dependencies.sval_derive_macros]
version = "2.11.1"
version = "2.12.0"
path = "../derive_macros"
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.11.1"
version = "2.12.0"
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.11.1"
version = "2.12.0"
path = "../"

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

[dependencies.sval]
version = "2.11.1"
version = "2.12.0"
path = "../"

[dependencies.sval_nested]
version = "2.11.1"
version = "2.12.0"
path = "../nested"
default-features = false

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.11.1"
version = "2.12.0"
```
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.11.1"
version = "2.12.0"
features = ["std"]
```
Expand Down
8 changes: 4 additions & 4 deletions test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sval_test"
version = "2.11.1"
version = "2.12.0"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand All @@ -12,15 +12,15 @@ keywords = ["serialization", "no_std"]
categories = ["encoding", "no-std"]

[dependencies.sval]
version = "2.11.1"
version = "2.12.0"
path = "../"
features = ["std"]

[dependencies.sval_fmt]
version = "2.11.1"
version = "2.12.0"
path = "../fmt"
features = ["std"]

[dev-dependencies.sval_dynamic]
version = "2.11.1"
version = "2.12.0"
path = "../dynamic"

0 comments on commit 0e84b9a

Please sign in to comment.