docs: update CHANGELOG

This commit is contained in:
ToruNiina
2025-01-13 18:28:50 +09:00
parent 02d1f0b9e0
commit 9b83842948
2 changed files with 44 additions and 0 deletions

View File

@@ -6,6 +6,28 @@ weight = 4
# Change Log
# v4.3.0
## Added
- Support `std::optional` as a template argument of `toml::find`
- Support multiple arguments `toml::visit(visitor, args...)`
## Fixed
- `toml::detail::region::last_` may be used uninitialized (#267) (#268) (by amatej @kontura)
- Fix use with CMake 3.21 and older (#271) (by Severin Leonhardt @SeverinLeonhardt)
- fix: prevent size_t-max length string allocation (#275) (#276) (by @hayt)
- update README.md (#277) (by somebody @oldoldtea) (by lz)
- Make parsing faster for very long line (#278)
- Avoid known problem in MSVC (#279)
- Check if `source_location::file_name()` is null before formatting
## Changed
- Update hugo-book theme
- Add MSVC 2017 to appveyor build
# v4.2.0
## Added

View File

@@ -6,6 +6,28 @@ weight = 4
# Change Log
# v4.3.0
## Added
- `toml::find``std::optional<T>`をサポート
- `toml::visit`で複数の引数をサポート
## Fixed
- 初期化前に変数が使われるケースを修正 (by amatej @kontura)
- CMake 3.21以前を使用する際の修正 (by Severin Leonhardt @SeverinLeonhardt)
- 非常に巨大な文字列が作成されるケースを修正 (by @hayt)
- READMEのサンプルコードを修正、ToCを増強 (by somebody @oldoldtea) (by lz)
- 長い行のパースを高速化
- MSVC 2017でのコンパイルエラーを修正
- `source_location::file_name`のヌルチェックを追加
## Changed
- hugo-bookテーマをアップデート
- MSVC 2017をappveyor buildに追加
# v4.2.0
## Added