Skip to content

Commit

Permalink
Merge pull request #29 from mgeisler/release-4.0.0
Browse files Browse the repository at this point in the history
cargo: bump version to 0.4.0
  • Loading branch information
mgeisler authored Nov 1, 2017
2 parents c909db1 + 8dbfc2a commit 690fdce
Show file tree
Hide file tree
Showing 3 changed files with 13 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.3.1"
version = "0.4.0"
authors = ["Martin Geisler <[email protected]>"]
description = """
Simple crate for ensuring that version numbers in README files are
Expand Down
12 changes: 11 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.3"
version-sync = "0.4"
```

Then create a `tests/version-numbers.rs` file with:
Expand Down Expand Up @@ -113,6 +113,16 @@ your_crate = "0.1.2"

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

### Version 0.4.0 — November 1st, 2017

This release replaces the dependency on the abandoned `syntex_syntax`
with with a dependency on the much lighter `syn` crate. This will
improve compilation speed.

Unfortunately, the `syn` crate does not provide us with information
about line numbers, so the error messages are no longer as good. We
might be able to work around that in a later version.

### Version 0.3.1 — September 26th, 2017

This release fixes a small problem with the handling of pre-release
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.3.1")]
#![doc(html_root_url = "https://docs.rs/version-sync/0.4.0")]
#![deny(missing_docs)]

extern crate itertools;
Expand Down

0 comments on commit 690fdce

Please sign in to comment.