diff --git a/CHANGELOG.md b/CHANGELOG.md index 60e0749..4c4b6fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.2] - 2019-12-01 + +* Sealed the `TypeUuidDynamic` trait so that it can't be implemented downstream. ([#5]) +* Bump `syn` and `quote` dependencies to use version 1.0. ([#6]) + +[#5]: https://github.com/randomPoison/type-uuid/pull/5 +[#6]: https://github.com/randomPoison/type-uuid/pull/6 + ## [0.1.1] - 2019-01-16 ### Added @@ -21,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Custom derive support for `TypeUuid`. * UUIDs for some amethyst types. -[Unreleased]: https://github.com/randomPoison/type-uuid/compare/v0.1.1...HEAD +[Unreleased]: https://github.com/randomPoison/type-uuid/compare/v0.1.2...HEAD +[0.1.2]: https://github.com/randomPoison/type-uuid/compare/v0.1.1...v0.1.2 [0.1.1]: https://github.com/randomPoison/type-uuid/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/randomPoison/type-uuid/compare/16d3369...v0.1.0 diff --git a/Cargo.toml b/Cargo.toml index 0fc1076..39cca10 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "type-uuid" -version = "0.1.1" +version = "0.1.2" authors = ["David LeGare ", "Jacob Kiesel "] edition = "2018"