Skip to content

Commit

Permalink
Merge pull request #71 from sval-rs/cargo/1.4.2
Browse files Browse the repository at this point in the history
Prepare for 1.4.2 release
  • Loading branch information
KodrAus committed Oct 19, 2023
2 parents de775bb + 7ab5551 commit 72fc8a2
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.4.1"
version = "1.4.2"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand Down Expand Up @@ -70,12 +70,12 @@ error = [
test = ["std"]

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

[dependencies.value-bag-serde1]
version = "1.4.1"
version = "1.4.2"
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.4.1"
version = "1.4.2"
```

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.4.1"
version = "1.4.2"
features = ["sval2"]
```

```rust
[dependencies.value-bag]
version = "1.4.1"
version = "1.4.2"
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.4.1"
version = "1.4.2"
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.4.1"
version = "1.4.2"
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.4.1")]
#![doc(html_root_url = "https://docs.rs/value-bag/1.4.2")]
#![no_std]

/*
Expand Down

0 comments on commit 72fc8a2

Please sign in to comment.