Skip to content

Commit

Permalink
prepare for 0.5.1 release (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus authored Feb 2, 2020
1 parent 72a1805 commit 85ccf03
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ members = [

[package]
name = "sval"
version = "0.5.0"
version = "0.5.1"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2018"
documentation = "https://docs.rs/sval"
Expand Down Expand Up @@ -68,7 +68,7 @@ default-features = false
package = "serde"

[dependencies.sval_derive]
version = "0.5.0"
version = "0.5.1"
path = "./derive"
optional = true

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Add `sval` to your crate dependencies:

```toml
[dependencies.sval]
version = "0.5.0"
version = "0.5.1"
```

## To support my data-structures
Expand Down Expand Up @@ -88,7 +88,7 @@ The `sval_json` crate can format any `sval::Value` as JSON:

```toml
[dependencies.sval_json]
version = "0.5.0"
version = "0.5.1"
features = ["std"]
```

Expand Down
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 = "0.5.0"
version = "0.5.1"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2018"
documentation = "https://docs.rs/sval_derive"
Expand Down
2 changes: 1 addition & 1 deletion derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This `derive` implementation has been shamelessly lifted from dtolnay's `miniser
https://github.com/dtolnay/miniserde
*/

#![doc(html_root_url = "https://docs.rs/sval_derive/0.5.0")]
#![doc(html_root_url = "https://docs.rs/sval_derive/0.5.1")]
#![recursion_limit = "128"]

#[macro_use]
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 = "0.5.0"
version = "0.5.1"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
edition = "2018"
documentation = "https://docs.rs/sval_json"
Expand All @@ -22,7 +22,7 @@ travis-ci = { repository = "KodrAus/sval" }
std = ["sval/std"]

[dependencies.sval]
version = "0.5.0"
version = "0.5.1"
path = "../"

[dependencies.ryu]
Expand Down
2 changes: 1 addition & 1 deletion json/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Add `sval_json` to your crate dependencies:

```toml
[dependencies.sval_json]
version = "0.5.0"
version = "0.5.1"
```

## To write JSON to a `fmt::Write`
Expand Down
4 changes: 2 additions & 2 deletions json/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Add `sval_json` to your `Cargo.toml`:
```toml,ignore
[dependencies.sval_json]
version = "0.5.0"
version = "0.5.1"
```
# Writing JSON to `fmt::Write`
Expand Down Expand Up @@ -79,7 +79,7 @@ let json = sval_json::to_writer(MyWrite, 42)?;
```
*/

#![doc(html_root_url = "https://docs.rs/sval_json/0.5.0")]
#![doc(html_root_url = "https://docs.rs/sval_json/0.5.1")]
#![no_std]

#[cfg(feature = "std")]
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Add `sval` to your `Cargo.toml`:
```toml,ignore
[dependencies.sval]
version = "0.5.0"
version = "0.5.1"
```
# Supported formats
Expand Down Expand Up @@ -157,7 +157,7 @@ fn with_value(value: impl sval::Value) {
```
*/

#![doc(html_root_url = "https://docs.rs/sval/0.5.0")]
#![doc(html_root_url = "https://docs.rs/sval/0.5.1")]
#![no_std]

#[doc(hidden)]
Expand Down

0 comments on commit 85ccf03

Please sign in to comment.