Skip to content

Commit afc0c49

Browse files
committed
Version 0.9.0.
1 parent 3b75886 commit afc0c49

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

parse-display-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parse-display-derive"
3-
version = "0.8.2"
3+
version = "0.9.0"
44
authors = ["frozenlib"]
55
license = "MIT OR Apache-2.0"
66
readme = "../README.md"

parse-display-with/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ default = ["std"]
1717
std = ["parse-display/std"]
1818

1919
[dependencies]
20-
parse-display = { version = "0.8.2", path = "../parse-display", default-features = false }
20+
parse-display = { version = "0.9.0", path = "../parse-display", default-features = false }

parse-display-with/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# parse-display-with
22

3+
[![Crates.io](https://img.shields.io/crates/v/parse-display-with.svg)](https://crates.io/crates/parse-display-with)
4+
[![Docs.rs](https://docs.rs/parse-display-with/badge.svg)](https://docs.rs/parse-display-with/)
5+
[![Actions Status](https://github.com/frozenlib/parse-display/workflows/CI/badge.svg)](https://github.com/frozenlib/parse-display/actions)
6+
37
Custom formatting/parsing utilities for [parse-display](https://crates.io/crates/parse-display).
48

59
## License

parse-display-with/src/tests/readme_parse_display.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
//!
1515
//! ```toml
1616
//! [dependencies]
17-
//! parse-display = "0.8.2"
17+
//! parse-display = "0.9.0"
1818
//! ```
1919
//!
2020
//! ## Documentation

parse-display-with/src/tests/readme_parse_display_with.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
// #![include_doc("../../README.md", start)]
22
//! # parse-display-with
33
//!
4+
//! [![Crates.io](https://img.shields.io/crates/v/parse-display-with.svg)](https://crates.io/crates/parse-display-with)
5+
//! [![Docs.rs](https://docs.rs/parse-display-with/badge.svg)](https://docs.rs/parse-display-with/)
6+
//! [![Actions Status](https://github.com/frozenlib/parse-display/workflows/CI/badge.svg)](https://github.com/frozenlib/parse-display/actions)
7+
//!
48
//! Custom formatting/parsing utilities for [parse-display](https://crates.io/crates/parse-display).
59
//!
610
//! ## License

parse-display/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parse-display"
3-
version = "0.8.2"
3+
version = "0.9.0"
44
authors = ["frozenlib"]
55
license = "MIT OR Apache-2.0"
66
readme = "../README.md"
@@ -18,7 +18,7 @@ std = ["regex", "regex-syntax"]
1818
docs = []
1919

2020
[dependencies]
21-
parse-display-derive = { version = "=0.8.2", path = "../parse-display-derive" }
21+
parse-display-derive = { version = "=0.9.0", path = "../parse-display-derive" }
2222
regex = { version = "1.10.3", optional = true }
2323
regex-syntax = { version = "0.8.2", optional = true }
2424

0 commit comments

Comments
 (0)