diff --git a/Cargo.toml b/Cargo.toml index 05cc154..cf9a8fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "version-sync" -version = "0.9.3" +version = "0.9.4" authors = ["Martin Geisler "] description = "Crate for ensuring that version numbers in README files and other files are kept in sync with the crate version." documentation = "https://docs.rs/version-sync/" diff --git a/README.md b/README.md index bebae7f..73be86a 100644 --- a/README.md +++ b/README.md @@ -108,6 +108,17 @@ your_crate = "0.1.2" This is a changelog describing the most important changes per release. +### Version 0.9.4 — 2021-12-14 + +* [#114](/~https://github.com/mgeisler/version-sync/pull/114): Move from + deprecated the `semver-parser` crate to `semver`. +* [#115](/~https://github.com/mgeisler/version-sync/pull/115): Expand + `assert_markdown_deps_updated!` to also check version numbers such + as `=1.2.3`, `>1.2.3`, and `>=1.2.3`. +* [#119](/~https://github.com/mgeisler/version-sync/pull/119): Add new + `assert_only_contains_regex!` macro which can ensure that all + version numbers in a file are updated. + ### Version 0.9.3 — 2021-09-20 * [#108](/~https://github.com/mgeisler/version-sync/pull/108): Make all @@ -262,7 +273,7 @@ Contributions will be accepted under the same license. [build-status]: /~https://github.com/mgeisler/version-sync/actions?query=workflow%3Abuild+branch%3Amaster [codecov]: https://codecov.io/gh/mgeisler/version-sync [crates-io]: https://crates.io/crates/version-sync -[api-docs]: https://docs.rs/version-sync/0.9.3/ +[api-docs]: https://docs.rs/version-sync/0.9.4/ [rust-2018]: https://doc.rust-lang.org/edition-guide/rust-2018/ [mit]: LICENSE [issue-17]: /~https://github.com/mgeisler/version-sync/issues/17 diff --git a/src/lib.rs b/src/lib.rs index 19f2ef5..f68688f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -78,7 +78,7 @@ //! //! [`html_root_url`]: https://rust-lang-nursery.github.io/api-guidelines/documentation.html#crate-sets-html_root_url-attribute-c-html-root -#![doc(html_root_url = "https://docs.rs/version-sync/0.9.3")] +#![doc(html_root_url = "https://docs.rs/version-sync/0.9.4")] #![forbid(unsafe_code)] #![deny(missing_docs)]