Skip to content

Commit a254c84

Browse files
authored
Merge pull request #49 from mgeisler/release-0.6.0
cargo: bump version to 0.6.0
2 parents e826690 + f5bd3f2 commit a254c84

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "version-sync"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Martin Geisler <[email protected]>"]
55
description = """
66
Simple crate for ensuring that version numbers in README files are

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ updated when the crate version changes.
1919
Add this to your `Cargo.toml`:
2020
```toml
2121
[dev-dependencies]
22-
version-sync = "0.5"
22+
version-sync = "0.6"
2323
```
2424

2525
Then create a `tests/version-numbers.rs` file with:
@@ -114,7 +114,7 @@ your_crate = "0.1.2"
114114

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

117-
### Unreleased
117+
### Version 0.6.0 — November 22nd, 2018
118118

119119
You can use `assert_contains_regex!` to grep files for the current
120120
version number. The search is done with a regular expression where

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
//! [`assert_html_root_url_updated`]: macro.assert_html_root_url_updated.html
5050
//! [`assert_contains_regex`]: macro.assert_contains_regex.html
5151
52-
#![doc(html_root_url = "https://docs.rs/version-sync/0.5.0")]
52+
#![doc(html_root_url = "https://docs.rs/version-sync/0.6.0")]
5353
#![deny(missing_docs)]
5454

5555
extern crate itertools;

0 commit comments

Comments
 (0)