Skip to content

Commit

Permalink
Merge pull request #11 from mgeisler/release-0.2.0
Browse files Browse the repository at this point in the history
Release 0.2.0
  • Loading branch information
mgeisler authored Sep 19, 2017
2 parents 5a638be + ddb612e commit f4b7cb5
Show file tree
Hide file tree
Showing 3 changed files with 9 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.1.3"
version = "0.2.0"
authors = ["Martin Geisler <[email protected]>"]
description = """
Simple crate for ensuring that version numbers in README files are
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ updated when the crate version changes.
Add this to your `Cargo.toml`:
```toml
[dev-dependencies]
version-sync = "0.1"
version-sync = "0.2"
```

Then create a `tests/version-numbers.rs` file with:
Expand Down Expand Up @@ -101,6 +101,12 @@ error: test failed

This is a changelog describing the most important changes per release.

### Version 0.2.0 — September 19th, 2017

Added `assert_html_root_url_updated!` which will check that the
`html_root_url` attribute points to the correct version of the crate
documentation on docs.rs.

### Version 0.1.3 — September 18th, 2017

First public release with support for finding outdated version numbers
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
//! [`assert_markdown_deps_updated`]: macro.assert_markdown_deps_updated.html
//! [`assert_html_root_url_updated`]: macro.assert_html_root_url_updated.html
#![doc(html_root_url = "https://docs.rs/version-sync/0.1.3")]
#![doc(html_root_url = "https://docs.rs/version-sync/0.2.0")]

extern crate pulldown_cmark;
extern crate semver_parser;
Expand Down

0 comments on commit f4b7cb5

Please sign in to comment.