Skip to content

Commit

Permalink
Merge pull request #121 from mgeisler/release-0.9.4
Browse files Browse the repository at this point in the history
Release 0.9.4
  • Loading branch information
mgeisler authored Dec 14, 2021
2 parents 99b5a8b + daeee4d commit de9d735
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
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.3"
version = "0.9.4"
authors = ["Martin Geisler <[email protected]>"]
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: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]

Expand Down

0 comments on commit de9d735

Please sign in to comment.