diff --git a/CHANGELOG.md b/CHANGELOG.md index 4dce8b9..3dc9f5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ All releases of **static_assertions** adhere to [Semantic Versioning][semver]. --- +## [v0.2.3](https://github.com/nvzqz/static-assertions-rs/tree/v0.2.3) (2017-08-24) + +- [Changes](https://github.com/nvzqz/static-assertions-rs/compare/v0.2.2...v0.2.3) +- [Release](https://github.com/nvzqz/static-assertions-rs/releases/tag/v0.2.3) + +### Improvements +- Removed clippy warnings +- Trailing commas are now allowed + +--- + ## [v0.2.2](https://github.com/nvzqz/static-assertions-rs/tree/v0.2.2) (2017-08-13) - [Changes](https://github.com/nvzqz/static-assertions-rs/compare/v0.2.1...v0.2.2) diff --git a/Cargo.toml b/Cargo.toml index 45a74a3..eacca67 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "static_assertions" -version = "0.2.2" +version = "0.2.3" authors = ["Nikolai Vazquez"] license = "MIT/Apache-2.0" homepage = "https://github.com/nvzqz/static-assertions-rs" diff --git a/README.md b/README.md index 21eefb1..bf1705c 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ following to your project's `Cargo.toml`: ```toml [dependencies] -static_assertions = "0.2.2" +static_assertions = "0.2.3" ``` and this to your crate root: diff --git a/src/lib.rs b/src/lib.rs index 6c8f1e2..479e933 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,7 +7,7 @@ //! //! ```toml //! [dependencies] -//! static_assertions = "0.2.2" +//! static_assertions = "0.2.3" //! ``` //! //! and this to your crate root: