From af60549fcb61424dafbf85bbbbb9ced681f9ebda Mon Sep 17 00:00:00 2001 From: Jeehoon Kang Date: Sun, 22 Jul 2018 21:25:22 +0900 Subject: [PATCH] Bump to 0.5.0 (#23) * Bump to 0.5.0 * Fix README --- CHANGELOG.md | 7 ++++++- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e0b5b5..6737d9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.5.0] - 2018-07-22 +### Changed +- Reorganize sub-modules and rename functions. + ## [0.4.1] - 2018-06-28 ### Fixed - Fix a documentation link. @@ -66,7 +70,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Added - Old implementation of `CachePadded` from `crossbeam` version 0.3.0 -[Unreleased]: https://github.com/crossbeam-rs/crossbeam-utils/compare/v0.4.1...HEAD +[Unreleased]: https://github.com/crossbeam-rs/crossbeam-utils/compare/v0.5.0...HEAD +[0.5.0]: https://github.com/crossbeam-rs/crossbeam-utils/compare/v0.4.1...v0.5.0 [0.4.1]: https://github.com/crossbeam-rs/crossbeam-utils/compare/v0.4.0...v0.4.1 [0.4.0]: https://github.com/crossbeam-rs/crossbeam-utils/compare/v0.3.2...v0.4.0 [0.3.2]: https://github.com/crossbeam-rs/crossbeam-utils/compare/v0.3.1...v0.3.2 diff --git a/Cargo.toml b/Cargo.toml index aceb14f..66230f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossbeam-utils" -version = "0.4.1" +version = "0.5.0" authors = ["The Crossbeam Project Developers"] license = "MIT/Apache-2.0" readme = "README.md" diff --git a/README.md b/README.md index b9303fc..6f6e0a7 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -crossbeam-utils = "0.4" +crossbeam-utils = "0.5" ``` Next, add this to your crate: