Skip to content

Commit

Permalink
cargo: bump version to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeisler committed Mar 30, 2020
1 parent a4aab0f commit ab13f9e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 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.8.1"
version = "0.9.0"
authors = ["Martin Geisler <martin@geisler.net>"]
description = """
Simple crate for ensuring that version numbers in README files are
Expand Down
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand All @@ -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`.
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ab13f9e

Please sign in to comment.