From e5a3ba0c377768585abe8cc5587e852c927721c3 Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Sun, 12 Dec 2021 16:07:23 +0000 Subject: [PATCH 1/2] Update changelog for version 0.9.4 --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index bebae7f..c003186 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 From daeee4d366df12ae815c2f510790ca474a72e519 Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Sun, 12 Dec 2021 16:08:48 +0000 Subject: [PATCH 2/2] Bump version to 0.9.4 --- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 c003186..73be86a 100644 --- a/README.md +++ b/README.md @@ -273,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)]