From 76d781a97ea5f2c8a6ab3d2e59dc567a5186329e Mon Sep 17 00:00:00 2001 From: Darrell Wright Date: Thu, 7 Jul 2022 01:03:18 -0400 Subject: [PATCH 1/3] Updated to latest header_libraries release --- extern/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extern/CMakeLists.txt b/extern/CMakeLists.txt index 9516f11f8..8e617b54a 100644 --- a/extern/CMakeLists.txt +++ b/extern/CMakeLists.txt @@ -17,7 +17,7 @@ include( FetchContent ) FetchContent_Declare( daw_header_libraries GIT_REPOSITORY https://github.com/beached/header_libraries.git - GIT_TAG v2.65.0 + GIT_TAG v2.65.1 ) FetchContent_Declare( From bcd7f16233620ebd2f282589e596de90cb423126 Mon Sep 17 00:00:00 2001 From: Darrell Wright Date: Thu, 7 Jul 2022 01:03:47 -0400 Subject: [PATCH 2/3] version bump --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 427377114..4e9d3b731 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ cmake_minimum_required( VERSION 3.14 ) project( "daw-json-link" - VERSION "3.0.1" + VERSION "3.0.2" DESCRIPTION "Static JSON parsing in C++" HOMEPAGE_URL "https://github.com/beached/daw_json_link" LANGUAGES C CXX ) From 6ed6236957f9fc008f23ad08f40f2a7f7f653b97 Mon Sep 17 00:00:00 2001 From: Darrell Wright Date: Fri, 22 Jul 2022 20:24:38 -0400 Subject: [PATCH 3/3] BUGFIX: Missing assignment --- CMakeLists.txt | 2 +- extern/CMakeLists.txt | 2 +- include/daw/json/impl/to_daw_json_string.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4e9d3b731..9835190f1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ cmake_minimum_required( VERSION 3.14 ) project( "daw-json-link" - VERSION "3.0.2" + VERSION "3.0.3" DESCRIPTION "Static JSON parsing in C++" HOMEPAGE_URL "https://github.com/beached/daw_json_link" LANGUAGES C CXX ) diff --git a/extern/CMakeLists.txt b/extern/CMakeLists.txt index 8e617b54a..40e003aee 100644 --- a/extern/CMakeLists.txt +++ b/extern/CMakeLists.txt @@ -17,7 +17,7 @@ include( FetchContent ) FetchContent_Declare( daw_header_libraries GIT_REPOSITORY https://github.com/beached/header_libraries.git - GIT_TAG v2.65.1 + GIT_TAG v2.68.1 ) FetchContent_Declare( diff --git a/include/daw/json/impl/to_daw_json_string.h b/include/daw/json/impl/to_daw_json_string.h index 457e652d2..41e411d02 100644 --- a/include/daw/json/impl/to_daw_json_string.h +++ b/include/daw/json/impl/to_daw_json_string.h @@ -1539,7 +1539,7 @@ namespace daw::json { if( ( whole_dig < -4 ) | ( whole_dig > 6 ) ) { char buff[50]{ }; char *ptr = buff; - daw::jkj::dragonbox::to_chars_detail::to_chars( dec, ptr, digits ); + ptr = daw::jkj::dragonbox::to_chars_detail::to_chars( dec, ptr, digits ); out_it.copy_buffer( buff, ptr ); return out_it; }