Skip to content

Commit

Permalink
prepare for 0.1.4 release (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus authored Apr 30, 2019
1 parent cfeaa1f commit 806db76
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 12 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.3"
version = "0.1.4"
authors = ["Ashley Mannix <ashleymannix@live.com.au>"]
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.3"
version = "0.1.4"
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.3"
version = "0.1.4"
```

## 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.3"
version = "0.1.4"
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.3"
version = "0.1.4"
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.3")]
#![doc(html_root_url = "https://docs.rs/sval_derive/0.1.4")]
#![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.3"
version = "0.1.4"
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.3"
version = "0.1.4"
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.3")]
#![doc(html_root_url = "https://docs.rs/sval_json/0.1.4")]
#![no_std]

#[cfg(feature = "std")]
Expand Down
1 change: 0 additions & 1 deletion src/fmt/to_debug.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ impl<'a, 'b: 'a> Stream<'a, 'b> {
}
}

// TODO: Support the indentation
impl<'a, 'b: 'a> stream::Stream for Stream<'a, 'b> {
#[inline]
fn begin(&mut self) -> Result<(), stream::Error> {
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.3"
version = "0.1.4"
```
# 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.3")]
#![doc(html_root_url = "https://docs.rs/sval/0.1.4")]
#![no_std]

#[macro_use]
Expand Down

0 comments on commit 806db76

Please sign in to comment.