Skip to content

Commit

Permalink
prepare for 0.1.5 release (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus authored May 8, 2019
1 parent c7f7c53 commit 6c89fa5
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ members = [

[package]
name = "sval"
version = "0.1.4"
version = "0.1.5"
authors = ["Ashley Mannix <[email protected]>"]
edition = "2018"
documentation = "https://docs.rs/sval"
Expand Down Expand Up @@ -62,7 +62,7 @@ default-features = false
package = "serde"

[dependencies.sval_derive]
version = "0.1.4"
version = "0.1.5"
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 @@ -38,7 +38,7 @@ Add `sval` to your crate dependencies:

```toml
[dependencies.sval]
version = "0.1.4"
version = "0.1.5"
```

## To support my datastructures
Expand Down Expand Up @@ -81,7 +81,7 @@ The `sval_json` crate can format any `sval::Value` as json:

```toml
[dependencies.sval_json]
version = "0.1.4"
version = "0.1.5"
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.1.4"
version = "0.1.5"
authors = ["Ashley Mannix <[email protected]>"]
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.1.4")]
#![doc(html_root_url = "https://docs.rs/sval_derive/0.1.5")]
#![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.1.4"
version = "0.1.5"
authors = ["Ashley Mannix <[email protected]>"]
edition = "2018"
documentation = "https://docs.rs/sval_json"
Expand All @@ -21,7 +21,7 @@ travis-ci = { repository = "KodrAus/sval" }
std = ["sval/std"]

[dependencies.sval]
version = "0.1.4"
version = "0.1.5"
path = "../"

[dependencies.ryu]
Expand Down
2 changes: 1 addition & 1 deletion json/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This library is no-std, so it can be run in environments
that don't have access to an allocator.
*/

#![doc(html_root_url = "https://docs.rs/sval_json/0.1.4")]
#![doc(html_root_url = "https://docs.rs/sval_json/0.1.5")]
#![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.1.4"
version = "0.1.5"
```
# Streaming values
Expand Down Expand Up @@ -357,7 +357,7 @@ fn with_value(value: impl sval::Value) {
```
*/

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

#[macro_use]
Expand Down

0 comments on commit 6c89fa5

Please sign in to comment.