diff --git a/Cargo.toml b/Cargo.toml index c9f7d50..3772917 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "version-sync" -version = "0.8.1" +version = "0.9.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 aabda68..200ab32 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.8" +version-sync = "0.9" ``` Then create a `tests/version-numbers.rs` file with: @@ -108,7 +108,7 @@ your_crate = "0.1.2" This is a changelog describing the most important changes per release. -### Unreleased +### Version 0.9.0 — March 30th, 2020 Drop support for Rust 1.31.0 since our dependencies keep releasing new patch versions that push up the minimum required Rust version. These @@ -124,6 +124,12 @@ therefore track the latest stable version of Rust from now on. At the time of writing, the code compiles with Rust 1.36, but this will likely become outdated soon. +Issues closed: + +* [#83][issue-83]: version_sync fails to parse toml blocks when inside + blockquotes +* [#84][issue-84]: Release update to crates.io with syn 1.0 + ### Version 0.8.1 — April 3rd, 2019 Dependencies were relaxed to make it easier to upgrade `version-sync`. @@ -237,3 +243,5 @@ Contributions will be accepted under the same license. [issue-19]: https://github.com/mgeisler/version-sync/issues/19 [issue-39]: https://github.com/mgeisler/version-sync/issues/39 [issue-42]: https://github.com/mgeisler/version-sync/issues/42 +[issue-83]: https://github.com/mgeisler/version-sync/issues/83 +[issue-84]: https://github.com/mgeisler/version-sync/issues/84 diff --git a/src/lib.rs b/src/lib.rs index b07171a..824f689 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -46,7 +46,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.8.1")] +#![doc(html_root_url = "https://docs.rs/version-sync/0.9.0")] #![deny(missing_docs)] mod contains_regex;