From 752d28a0aeb08f9cc02a7cc4778cad1b80e4935e Mon Sep 17 00:00:00 2001 From: Kathryn Long Date: Fri, 15 Jul 2022 17:24:58 -0400 Subject: [PATCH] bump version to 1.0.2 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a98bd0..06d15e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [1.0.2] - 2022-07-15 ### Fixed - Correctly check for and error on nul values in C-string macros `u16cstr!`, `u32cstr!`, and `widecstr!`. Fixes [#28]. @@ -332,7 +334,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. [@yescallop]: https://github.com/yescallop [@OpenByteDev]: https://github.com/OpenByteDev -[Unreleased]: https://github.com/starkat99/widestring-rs/compare/v1.0.1...HEAD +[Unreleased]: https://github.com/starkat99/widestring-rs/compare/v1.0.2...HEAD +[1.0.2]: https://github.com/starkat99/widestring-rs/compare/v1.0.1...v1.0.2 [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 diff --git a/Cargo.toml b/Cargo.toml index 71ece87..dcc633e 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.1" +version = "1.0.2" 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 59e476e..e211e24 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.1")] +#![doc(html_root_url = "https://docs.rs/widestring/1.0.2")] #![doc(test(attr(deny(warnings), allow(unused))))] #![cfg_attr(docsrs, feature(doc_cfg))]