Skip to content
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.

Commit

Permalink
Release 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jul 15, 2018
1 parent 3de6f82 commit 70b6d97
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mashup"
version = "0.1.4" # remember to update html_root_url
version = "0.1.5" # remember to update html_root_url
authors = ["David Tolnay <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Concatenate identifiers in a macro invocation"
Expand All @@ -12,7 +12,7 @@ travis-ci = { repository = "dtolnay/mashup" }

[dependencies]
proc-macro-hack = "0.4"
mashup-impl = { version = "0.1.4", path = "impl" }
mashup-impl = { version = "0.1.5", path = "impl" }

[workspace]
members = ["impl"]
2 changes: 1 addition & 1 deletion impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mashup-impl"
version = "0.1.4" # remember to update html_root_url
version = "0.1.5" # remember to update html_root_url
authors = ["David Tolnay <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Concatenate identifiers in a macro invocation"
Expand Down
2 changes: 1 addition & 1 deletion impl/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/mashup-impl/0.1.4")]
#![doc(html_root_url = "https://docs.rs/mashup-impl/0.1.5")]

#[macro_use]
extern crate proc_macro_hack;
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
//! [#5]: https://github.com/dtolnay/mashup/issues/5
//! [#6]: https://github.com/dtolnay/mashup/issues/6

#![doc(html_root_url = "https://docs.rs/mashup/0.1.4")]
#![doc(html_root_url = "https://docs.rs/mashup/0.1.5")]

#[macro_use]
extern crate proc_macro_hack;
Expand Down

0 comments on commit 70b6d97

Please sign in to comment.