doc: update changelog

This commit is contained in:
ToruNiina
2024-08-12 12:47:09 +09:00
parent 0c833452e4
commit b415dd81ed
2 changed files with 36 additions and 0 deletions

View File

@@ -6,6 +6,24 @@ weight = 4
# Change Log
# v4.2.0
## Added
- Support `std::optional` members for `TOML11_DEFINE_CONVERSION_NON_INTRUSIVE` (by Ken Matsui)
- Make `thread_local` for `color_mode` optional (by Ken Matsui)
- add usage with CPM to README
- add explanation about `ordered_map` to README and update doc
## Fixed
- Manually cast file size to `std::streamsize` (by Pino Toscano)
- Typographical error in `table_format` output
- Format an empty array specified as array-of-table in one line
- Added a missing include file
- Fix typos in documentation template syntax (by Jack W)
- Fix `toml::find_or` for deeply nested tables
# v4.1.0
## Added

View File

@@ -6,6 +6,24 @@ weight = 4
# Change Log
# v4.2.0
## Added
- `TOML11_DEFINE_CONVERSION_NON_INTRUSIVE``std::optional` なメンバをサポート (by Ken Matsui @ken-matsui)
- `thread_local`だった`color_mode`をデフォルトでグローバルにし、`thread_local`にするオプションを追加 (by Ken Matsui @ken-matsui)
- CPMでの使い方を`README`に追加
- `README``ordered_map`への言及を追加し、ドキュメントでの説明を追加
## Fixed
- ファイルサイズの`std::streamsize`への変換で警告が出ることがある問題を修正 (by Pino Toscano @pinotree)
- `table_format`に不正な値が与えられた際の出力のtypoを修正
- `array`のフォーマットが`array_of_tables`と指定されていてかつ空の場合の出力を修正
- 特定の環境で`include`が足りずにコンパイルできない問題を修正
- ドキュメントに含まれる文法エラーを修正 (by Jack W)
- `toml::find_or` を深くネストされたテーブルに使用した際にコンパイルが失敗する問題を修正
# v4.1.0
## Added