Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Dec 9, 2019
1 parent b8b17f5 commit 4cc7697
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ This project adheres to [Semantic Versioning](https://semver.org).

## [Unreleased]

## [0.5.0] - 2019-12-09

* [Added `Signature` type.][13]

[13]: https://github.com/taiki-e/syn-mid/pull/13

## [0.4.0] - 2019-08-15

* Updated all data structures based on `syn` 1.0.
Expand Down Expand Up @@ -38,7 +44,8 @@ This project adheres to [Semantic Versioning](https://semver.org).

Initial release

[Unreleased]: https://github.com/taiki-e/syn-mid/compare/v0.4.0...HEAD
[Unreleased]: https://github.com/taiki-e/syn-mid/compare/v0.5.0...HEAD
[0.5.0]: https://github.com/taiki-e/syn-mid/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/taiki-e/syn-mid/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/taiki-e/syn-mid/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/taiki-e/syn-mid/compare/v0.1.0...v0.2.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.4.0"
version = "0.5.0"
authors = ["Taiki Endo <[email protected]>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Add this to your `Cargo.toml`:

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

The current syn-mid requires Rust 1.31 or later.
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
//! [`syn_mid::Block`]: struct.Block.html
//! [syn]: https://github.com/dtolnay/syn
#![doc(html_root_url = "https://docs.rs/syn-mid/0.4.0")]
#![doc(html_root_url = "https://docs.rs/syn-mid/0.5.0")]
#![doc(test(
no_crate_inject,
attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))
Expand Down

0 comments on commit 4cc7697

Please sign in to comment.