Skip to content

Commit

Permalink
Include v1.1.3 in the CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
eliaskosunen committed Jan 19, 2024
1 parent fe7cbfe commit bca5308
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 28 deletions.
28 changes: 0 additions & 28 deletions .readthedocs.yaml

This file was deleted.

27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,33 @@ Major changes include:
* Performance improvements
* Completely reworked internals

# 1.1.3

_Released 2023-11-05_

Expected to be the last release in the v1-branch.
Development efforts are now fully directed towards v2.

## Features

* Allow disabling support for individual types with `SCN_DISABLE_TYPE_*` (#70, thanks [@cjvaughter (CJ Vaughter)](https://github.com/cjvaughter))
* Also, allow for disabling the fallbacks to `std::from_chars` and `std::strtod` when scanning floats
* This provides possible binary size reductions, and allows better use in e.g. embedded platforms
* Allow disabling runtime localization with `SCN_DISABLE_LOCALE` (#71, thanks [@cjvaughter (CJ Vaughter)](https://github.com/cjvaughter))
* Parse leading `+` signs in floats (reported in #77)

## Fixes

* Fix `scn::wrap(std::string_view&&)` being ambiguous on gcc (reported in #83)
* Fix compiler error in `scn::basic_string_view<CharT>::substr` (reported in #86)
* Fix memory safety issues found with ASan and UBsan in
`small_vector`, `detail::utf16::validate_next`, and `detail::get_buffer`.
* Add `COMPONENT` to CMake install targets (#80, thanks [@pawelwod](https://github.com/pawelwod))
* Fix calculation of `SCN_MSVC` from `_MSC_FULL_VER` (#62, thanks [@matbech (Mathias Berchtold)](https://github.com/matbech))
* Fix MSVC `C4146` warning in `integer_scanner` (#64, thanks [@matbech (Mathias Berchtold)](https://github.com/matbech))
* Use `if constexpr` and `std::unreachable` if available (#61, #78, thanks [@matbech (Mathias Berchtold)](https://github.com/matbech))
* Improve error messages given from the float parser

# 1.1.2

_Released 2022-03-19_
Expand Down

0 comments on commit bca5308

Please sign in to comment.