From 7a407d2d8b0bf32c2d8829e6b6892da6ee9e7e3a Mon Sep 17 00:00:00 2001 From: Kathryn Long Date: Sat, 6 Apr 2024 17:55:21 -0400 Subject: [PATCH] bump version to 1.1.0 --- CHANGELOG.md | 9 +++++++-- Cargo.lock | 2 +- Cargo.toml | 2 +- src/lib.rs | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f845873..d85df50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,15 @@ 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.1.0] - 2022-04-06 ### Added - `Utf32String::into_char_vec` and missing conversion to `Vec` for `Utf32String`. Fixes [#37]. +- `include_utf16str!` macro to include UTF-16 file at compile-time as `Utf16Str`. By [@daxpedda]. ### Fixed - `U16String::pop_char` panics with surrogate string. Fixes [#38]. -- Various import and new clippy warnings. +- Various import warnings and new clippy warnings, plus stabilized debugger visulaizer warnings. ## [1.0.2] - 2022-07-15 ### Fixed @@ -341,8 +344,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. [@joshwd36]: https://github.com/joshwb36 [@yescallop]: https://github.com/yescallop [@OpenByteDev]: https://github.com/OpenByteDev +[@daxpedda]: https://github.com/daxpedda -[Unreleased]: https://github.com/starkat99/widestring-rs/compare/v1.0.2...HEAD +[Unreleased]: https://github.com/starkat99/widestring-rs/compare/v1.1.0...HEAD +[1.1.0]: https://github.com/starkat99/widestring-rs/compare/v1.0.2...v1.1.0 [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 diff --git a/Cargo.lock b/Cargo.lock index 31a0d36..597b9fb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -106,7 +106,7 @@ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" [[package]] name = "widestring" -version = "1.0.2" +version = "1.1.0" dependencies = [ "debugger_test", "debugger_test_parser", diff --git a/Cargo.toml b/Cargo.toml index ffcbbe6..b04f82e 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.2" +version = "1.1.0" 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 477e45f..fe93139 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -222,7 +222,7 @@ )] #![allow(renamed_and_removed_lints, stable_features)] // Until min version gets bumped #![cfg_attr(not(feature = "std"), no_std)] -#![doc(html_root_url = "https://docs.rs/widestring/1.0.2")] +#![doc(html_root_url = "https://docs.rs/widestring/1.1.0")] #![doc(test(attr(deny(warnings), allow(unused))))] #![cfg_attr(docsrs, feature(doc_cfg))] #![cfg_attr(