From 6d3ac2e1c3bf40e73aa07a602c5f62e8ec90d9f2 Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Mon, 20 Sep 2021 18:46:32 +0000 Subject: [PATCH 1/2] Update changelog for version 0.9.3 --- README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c98d9c6..4488e97 100644 --- a/README.md +++ b/README.md @@ -108,10 +108,19 @@ your_crate = "0.1.2" This is a changelog describing the most important changes per release. +### Version 0.9.3 — 2021-09-20 + +* [#108](https://github.com/mgeisler/version-sync/pull/108): Make all + dependencies optional. +* [#109](https://github.com/mgeisler/version-sync/pull/109): Forbid + the use of unsafe code. +* [#110](https://github.com/mgeisler/version-sync/pull/110): Add + simple `check_contains_version` function. + ### Version 0.9.2 — 2021-02-13 -* [#94](https://github.com/mgeisler/version-sync/pull/94): chore: - Update pulldown-cmark to 0.8. +* [#94](https://github.com/mgeisler/version-sync/pull/94): Update + pulldown-cmark to 0.8. * [#95](https://github.com/mgeisler/version-sync/pull/95): Fix `non_fmt_panic` lint error in latest nightly. * [#100](https://github.com/mgeisler/version-sync/pull/100): Setup From fed14c4f3e6f222e8d4cd34531624ffcad6857e4 Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Mon, 20 Sep 2021 18:47:44 +0000 Subject: [PATCH 2/2] Bump version to 0.9.3 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 47c80d5..1f824a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "version-sync" -version = "0.9.2" +version = "0.9.3" 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/src/lib.rs b/src/lib.rs index 86fd947..8997280 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -74,7 +74,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.9.2")] +#![doc(html_root_url = "https://docs.rs/version-sync/0.9.3")] #![forbid(unsafe_code)] #![deny(missing_docs)]