Skip to content

Commit

Permalink
Merge pull request #81 from sval-rs/cargo/1.6.0
Browse files Browse the repository at this point in the history
Prepare for 1.6.0 release
  • Loading branch information
KodrAus committed Jan 9, 2024
2 parents 573e176 + dadf0b6 commit 9284e50
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "value-bag"
version = "1.5.0"
version = "1.6.0"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand Down Expand Up @@ -73,12 +73,12 @@ error = [
test = ["std"]

[dependencies.value-bag-sval2]
version = "1.5.0"
version = "1.6.0"
path = "meta/sval2"
optional = true

[dependencies.value-bag-serde1]
version = "1.5.0"
version = "1.6.0"
path = "meta/serde1"
optional = true

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,20 +69,20 @@ Add the `value-bag` crate to your `Cargo.toml`:

```rust
[dependencies.value-bag]
version = "1.5.0"
version = "1.6.0"
```

You'll probably also want to add a feature for either `sval` (if you're in a no-std environment) or `serde` (if you need to integrate with other code that uses `serde`):

```rust
[dependencies.value-bag]
version = "1.5.0"
version = "1.6.0"
features = ["sval2"]
```

```rust
[dependencies.value-bag]
version = "1.5.0"
version = "1.6.0"
features = ["serde1"]
```

Expand Down
2 changes: 1 addition & 1 deletion meta/serde1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "value-bag-serde1"
version = "1.5.0"
version = "1.6.0"
edition = "2021"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
license = "Apache-2.0 OR MIT"
Expand Down
2 changes: 1 addition & 1 deletion meta/sval2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "value-bag-sval2"
version = "1.5.0"
version = "1.6.0"
edition = "2021"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
license = "Apache-2.0 OR MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! The producer of a [`ValueBag`] may use a different strategy for capturing than the eventual
//! consumer. They don't need to coordinate directly.

#![doc(html_root_url = "https://docs.rs/value-bag/1.5.0")]
#![doc(html_root_url = "https://docs.rs/value-bag/1.6.0")]
#![no_std]

/*
Expand Down

0 comments on commit 9284e50

Please sign in to comment.