Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions changelog/current.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@
Previously, some inf and nan cases were emitted without quotes; now they are all emitted with the fixed strings `.nan` and `.inf`, which helps in cases where the JSON may be loaded in JavaScript. Note also the added zeroes for some floats, eg `.1` or `-2.` turning into `0.1` and `-2.0`.


### Other changes

- Update c4core to v0.2.10


### Python improvements

- [PR#560](https://github.com/biojppm/rapidyaml/pull/560) (see also [#554](https://github.com/biojppm/rapidyaml/issues/554)): python improvements:
Expand Down
2 changes: 1 addition & 1 deletion ext/c4core
Submodule c4core updated 52 files
+3 −0 .clang-tidy
+0 −15 .github/workflows/coverage.yml
+16 −16 .github/workflows/coverage.ys
+6 −3 CMakeLists.txt
+6 −0 changelog/0.2.10.md
+7 −0 changelog/0.2.9.md
+1 −1 src/c4/allocator.hpp
+1 −1 src/c4/base64.cpp
+1 −1 src/c4/base64.hpp
+2 −1 src/c4/blob.hpp
+10 −7 src/c4/charconv.hpp
+0 −1 src/c4/config.hpp
+115 −75 src/c4/dump.hpp
+4 −2 src/c4/enum.hpp
+3 −0 src/c4/error.cpp
+32 −35 src/c4/error.hpp
+1 −1 src/c4/ext/fast_float
+1 −0 src/c4/ext/fast_float.hpp
+573 −78 src/c4/ext/fast_float_all.h
+3 −0 src/c4/hash.hpp
+2 −1 src/c4/language.cpp
+19 −5 src/c4/language.hpp
+6 −6 src/c4/memory_resource.cpp
+1 −1 src/c4/memory_resource.hpp
+7 −5 src/c4/memory_util.cpp
+1 −0 src/c4/memory_util.hpp
+2 −1 src/c4/span.hpp
+121 −0 src/c4/std/span.hpp
+82 −0 src/c4/std/span_fwd.hpp
+1 −0 src/c4/std/std.hpp
+1 −0 src/c4/std/std_fwd.hpp
+16 −23 src/c4/std/string.hpp
+7 −11 src/c4/std/string_view.hpp
+24 −20 src/c4/std/vector.hpp
+80 −21 src/c4/substr.hpp
+2 −0 src/c4/substr_fwd.hpp
+1 −0 src/c4/szconv.hpp
+6 −6 src/c4/types.hpp
+2 −2 src/c4/utf.hpp
+2 −2 src/c4/version.hpp
+1 −1 src/c4/windows_push.hpp
+1 −1 tbump.toml
+1 −2 test/CMakeLists.txt
+107 −19 test/test_dump.cpp
+4 −0 test/test_error.cpp
+1 −1 test/test_format.cpp
+1 −1 test/test_install/CMakeLists.txt
+1 −1 test/test_singleheader/CMakeLists.txt
+405 −0 test/test_std.cpp
+0 −148 test/test_std_string.cpp
+0 −133 test/test_std_vector.cpp
+2 −0 tools/amalgamate.py
Loading