Skip to content

Commit

Permalink
bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
starkat99 committed Apr 6, 2024
1 parent 01cd954 commit 7a407d2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <a name="1.1.0"></a>
### Added
- `Utf32String::into_char_vec` and missing conversion to `Vec<char>` 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 <a name="1.0.2"></a>
### Fixed
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 7a407d2

Please sign in to comment.