From 0f2e4030c72ce425df7af7e35cdadab69e3d4359 Mon Sep 17 00:00:00 2001 From: Kathryn Long Date: Fri, 24 Jun 2022 01:29:09 -0400 Subject: [PATCH] bump version to 1.0.1 --- CHANGELOG.md | 8 +++++++- Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d0ca61..1374264 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [1.0.1] - 2022-06-24 +### Fixed +- Reduce collision potential for macros. By [@OpenByteDev]. + ## [1.0.0] - 2022-06-21 ### Changed - **Breaking Change** Minimum supported Rust version is now 1.58. @@ -322,8 +326,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. [@nicbn]: https://github.com/nicbn [@joshwd36]: https://github.com/joshwb36 [@yescallop]: https://github.com/yescallop +[@OpenByteDev]: https://github.com/OpenByteDev -[Unreleased]: https://github.com/starkat99/widestring-rs/compare/v1.0.0...HEAD +[Unreleased]: https://github.com/starkat99/widestring-rs/compare/v1.0.1...HEAD +[1.0.1]: https://github.com/starkat99/widestring-rs/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/starkat99/widestring-rs/compare/v1.0.0-beta.1...v1.0.0 [1.0.0-beta.1]: https://github.com/starkat99/widestring-rs/compare/v0.5.1...v1.0.0-beta.1 [0.5.1]: https://github.com/starkat99/widestring-rs/compare/v0.5.0...v0.5.1 diff --git a/Cargo.toml b/Cargo.toml index 45387a0..71ece87 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "widestring" # Remember to keep in sync with html_root_url crate attribute -version = "1.0.0" +version = "1.0.1" description = "A wide string Rust library for converting to and from wide strings, such as those often used in Windows API or other FFI libaries. Both `u16` and `u32` string types are provided, including support for UTF-16 and UTF-32, malformed encoding, C-style strings, etc." repository = "https://github.com/starkat99/widestring-rs" readme = "README.md" diff --git a/src/lib.rs b/src/lib.rs index a75aca2..59e476e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -221,7 +221,7 @@ future_incompatible )] #![cfg_attr(not(feature = "std"), no_std)] -#![doc(html_root_url = "https://docs.rs/widestring/1.0.0")] +#![doc(html_root_url = "https://docs.rs/widestring/1.0.1")] #![doc(test(attr(deny(warnings), allow(unused))))] #![cfg_attr(docsrs, feature(doc_cfg))]