diff --git a/Cargo.toml b/Cargo.toml index 77f3556..b79faed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "version-sync" -version = "0.5.0" +version = "0.6.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 f5bae08..cf541fe 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ updated when the crate version changes. Add this to your `Cargo.toml`: ```toml [dev-dependencies] -version-sync = "0.5" +version-sync = "0.6" ``` Then create a `tests/version-numbers.rs` file with: @@ -114,7 +114,7 @@ your_crate = "0.1.2" This is a changelog describing the most important changes per release. -### Unreleased +### Version 0.6.0 — November 22nd, 2018 You can use `assert_contains_regex!` to grep files for the current version number. The search is done with a regular expression where diff --git a/src/lib.rs b/src/lib.rs index f1f6c86..6279867 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.5.0")] +#![doc(html_root_url = "https://docs.rs/version-sync/0.6.0")] #![deny(missing_docs)] extern crate itertools;