Skip to content

Releases: DuffsDevice/tiny-utf8

Version 4.4.3

27 Oct 10:36
84d9878
Compare
Choose a tag to compare

This is a compatibility-fix release.

Changelog

  • Fixed issue #65 (with use of C++20 features under MSVC). Thanks to @s9w for reporting.

Version 4.4.2

19 Aug 11:37
e5b60cb
Compare
Choose a tag to compare

This is a minor bug-fix release.

Changelog

  • Fixed compilation issue #63 in u8string::cpp_str_bom.

Version 4.4.1

29 Jun 11:39
Compare
Choose a tag to compare

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

28 Jun 15:50
578c223
Compare
Choose a tag to compare

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

18 Apr 19:29
e53efd9
Compare
Choose a tag to compare

This is minor a bug-fix release.

Changelog

  • Fixed compilation issue with defintion of u8_string in C++17, when char8_t is not available.

Version 4.3.1

09 Mar 18:24
ff84a31
Compare
Choose a tag to compare

This is a bug-fix release.

Changelog

  • Fixed issue #57 (bug with basic_string( value_type ))

Version 4.3

07 Nov 20:14
Compare
Choose a tag to compare

This release is a trivial but significant API change.

Changelog

  • Renamed template class tiny_utf8::basic_utf8_string to basic_string in order to resemble the congruence to std::basic_string.
  • Introduced typedef tiny_utf8::string to replace tiny_utf8::utf8_string.

Version 4.2.2

02 Nov 14:33
08d3413
Compare
Choose a tag to compare

This release fixes a compilation issue on 32bit MSVC.

Changelog

  • Fixed error "C3861" on MSVCx86 (#56)

Version 4.2.1

01 Nov 09:24
411dfba
Compare
Choose a tag to compare

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

26 Oct 16:22
048f74d
Compare
Choose a tag to compare

This release is a minor API extension.

Changelog

  • Addition of basic_utf8_string::starts_with/ends_with (motivated through #52).