Skip to content

Commit

Permalink
prepare for 0.1.1 release (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus committed Jan 17, 2019
1 parent ea45dcf commit fcb17b7
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 @@ -10,7 +10,7 @@ members = [

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

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

```toml
[dependencies.sval]
version = "0.1.0"
version = "0.1.1"
```

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

```toml
[dependencies.sval_json]
version = "0.1.0"
version = "0.1.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.1.0"
version = "0.1.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.1.0")]
#![doc(html_root_url = "https://docs.rs/sval_derive/0.1.1")]

#![recursion_limit = "128"]

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.0"
version = "0.1.1"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
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.0"
version = "0.1.1"
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.0")]
#![doc(html_root_url = "https://docs.rs/sval_json/0.1.1")]

#![no_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.0"
version = "0.1.1"
```
# Streaming values
Expand Down Expand Up @@ -334,7 +334,7 @@ pub enum Data {
```
*/

#![doc(html_root_url = "https://docs.rs/sval/0.1.0")]
#![doc(html_root_url = "https://docs.rs/sval/0.1.1")]

#![no_std]

Expand Down

0 comments on commit fcb17b7

Please sign in to comment.