diff --git a/Cargo.toml b/Cargo.toml index fff55e0..4b0db83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "version-sync" -version = "0.6.0" +version = "0.7.0" authors = ["Martin Geisler "] description = """ Simple crate for ensuring that version numbers in README files are diff --git a/README.md b/README.md index b4e7ec8..29a16f0 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ updated when the crate version changes. Add this to your `Cargo.toml`: ```toml [dev-dependencies] -version-sync = "0.6" +version-sync = "0.7" ``` Then create a `tests/version-numbers.rs` file with: @@ -111,7 +111,7 @@ your_crate = "0.1.2" This is a changelog describing the most important changes per release. -### Unreleased +### Version 0.7.0 — January 14th, 2019 Special characters are now correctly escaped in the `{name}` and `{version}` placeholders in `assert_contains_regex!`. diff --git a/src/lib.rs b/src/lib.rs index 009c06f..3461da0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -49,7 +49,7 @@ //! [`assert_html_root_url_updated`]: macro.assert_html_root_url_updated.html //! [`assert_contains_regex`]: macro.assert_contains_regex.html -#![doc(html_root_url = "https://docs.rs/version-sync/0.6.0")] +#![doc(html_root_url = "https://docs.rs/version-sync/0.7.0")] #![deny(missing_docs)] extern crate itertools;