Releases: DuffsDevice/tiny-utf8
Releases · DuffsDevice/tiny-utf8
Version 4.4.3
Version 4.4.2
Version 4.4.1
This is a minor bug-fix release.
Changelog
- Fixed continuation of issue #61 (through adding overloads of mutation methods taking two iterators).
Version 4.4
This release changes the API, but does not change names.
Changelog
- Fixed bug #61.
- Enhanced implementation of iterator interface: Added
_raw
versions of iterator-related methods - Fixed iterator validity guarantees
Version 4.3.2
This is minor a bug-fix release.
Changelog
- Fixed compilation issue with defintion of
u8_string
in C++17, whenchar8_t
is not available.
Version 4.3.1
Version 4.3
This release is a trivial but significant API change.
Changelog
- Renamed template class
tiny_utf8::basic_utf8_string
tobasic_string
in order to resemble the congruence tostd::basic_string
. - Introduced typedef
tiny_utf8::string
to replacetiny_utf8::utf8_string
.
Version 4.2.2
This release fixes a compilation issue on 32bit MSVC.
Changelog
- Fixed error "C3861" on MSVCx86 (#56)
Version 4.2.1
This release fixes some compilation issues.
Changelog
- Fixed compilation on GCC prior to version 8 (#55)
- Fixed compilation on Clang prior to version 3.8
Version 4.2
This release is a minor API extension.
Changelog
- Addition of
basic_utf8_string::starts_with
/ends_with
(motivated through #52).