Skip to content

Commit

Permalink
Release v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Aug 15, 2019
1 parent 567e34a commit 5d3d854
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased

# 0.4.0 - 2019-08-15

* Updated all data structures based on `syn` 1.0.

* Updated `proc-macro2`, `syn`, and `quote` to 1.0.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "syn-mid"
version = "0.3.0"
version = "0.4.0"
authors = ["Taiki Endo <[email protected]>"]
edition = "2018"
license = "Apache-2.0/MIT"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
syn-mid = "0.3"
syn-mid = "0.4"
```

The current syn-mid requires Rust 1.31 or later.
Expand Down
2 changes: 1 addition & 1 deletion examples/const_fn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ path = "lib.rs"
proc-macro2 = "1.0"
quote = "1.0"
syn = "1.0"
syn-mid = { version = "0.3", path = "../..", features = ["clone-impls"] }
syn-mid = { version = "0.4", path = "../..", features = ["clone-impls"] }
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
//! [syn]: https://github.com/dtolnay/syn
//!
#![doc(html_root_url = "https://docs.rs/syn-mid/0.3.0")]
#![doc(html_root_url = "https://docs.rs/syn-mid/0.4.0")]
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
#![warn(unsafe_code)]
#![warn(rust_2018_idioms, unreachable_pub)]
Expand Down

0 comments on commit 5d3d854

Please sign in to comment.