Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.9.3 #112

Merged
merged 2 commits into from
Sep 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "version-sync"
version = "0.9.2"
version = "0.9.3"
authors = ["Martin Geisler <martin@geisler.net>"]
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/"
Expand Down
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]

Expand Down