changelog.txt 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // Copyright (c) 2009-2011 Artyom Beilis (Tonkikh)
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See
  5. // accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. //
  8. // vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4 filetype=cpp.doxygen
  9. /*!
  10. \page changelog Changelog
  11. - 1.67.0
  12. - Added support of unique_ptr interface in addition to C++2003 auto_ptr - in order to support C++2017, now you can use BOOST_LOCALE_HIDE_AUTO_PTR definiton to remove auto_ptr from the interfaces and prevent deprecated watnings
  13. - Fixed test problem with ICU >60.1
  14. - Fix of solaris build
  15. - Fixed wired FreeBSD/clang issue on optimized build. Probably compiler workaround
  16. - Added workaround for failing MSVC tests due to 932 codepage codecvt issue
  17. - Fixed bugs 6851, 12572, 12453
  18. - Fixed missing throw in case of failure in icu/date_time
  19. - Fixed build agains Boost.Thread v4
  20. - Fixed Year of week instead of year ICU backend formatting
  21. - Fixed formatting test for ICU 56.1 and above
  22. - 1.60.0
  23. - Implemented generic codecvt facet and add general purpose utf8_codecvt facet
  24. - Added posix locale support for FreeBSD 10.0 and above
  25. - Fixed issues 10017 (sun redefinition on SunOS), 11163 (set_default_messages_domain incorrect behavior), 11673 - build issues
  26. - Some warning cleanup
  27. - Fixed tests for latest ICU versions
  28. - Added workaround for `libc++` issues
  29. - Added new defines `BOOST_LOCALE_ENABLE_CHAR16_T` and `BOOST_LOCALE_ENABLE_CHAR32_T` to enable C++11 `char16_t` and `char32_t` instead of deprecated ones
  30. - 1.53.0 - Bug fixes: 7743, 7386, 7734, 7701, 7368, 7762:
  31. - 7743 - security related bug fix, some invalid UTF-8 sequences where accepted as valid
  32. - 7386 - invalid Windows codepage names used
  33. - 7734 - fixed missing documentation, caused by a error in Doxygen formatting
  34. - 7701 - fixed missing \c std:: in some places
  35. - 7368, 7762 - Spelling, grammar, typos
  36. - 1.49.0
  37. - Fixed incorrect use of MultiByteToWideChar in detection of invalid input sequences
  38. - 1.48.0 - First Release
  39. */