From 77cc847c842c49e7e3477c1e95da2b6540166d66 Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Sat, 8 Feb 2025 11:49:58 -0500 Subject: [PATCH] pushing version change --- CMakeLists.txt | 2 +- README.md | 6 +++--- include/fast_float/float_common.h | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 94fc0b7..08b417a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.9) -project(fast_float VERSION 7.0.0 LANGUAGES CXX) +project(fast_float VERSION 8.0.0 LANGUAGES CXX) set(FASTFLOAT_CXX_STANDARD 11 CACHE STRING "the C++ standard to use for fastfloat") set(CMAKE_CXX_STANDARD ${FASTFLOAT_CXX_STANDARD}) option(FASTFLOAT_TEST "Enable tests" OFF) diff --git a/README.md b/README.md index 38b0032..3eb540b 100644 --- a/README.md +++ b/README.md @@ -455,7 +455,7 @@ sufficiently recent version of CMake (3.11 or better at least): FetchContent_Declare( fast_float GIT_REPOSITORY https://github.com/fastfloat/fast_float.git - GIT_TAG tags/v6.1.6 + GIT_TAG tags/v8.0.0 GIT_SHALLOW TRUE) FetchContent_MakeAvailable(fast_float) @@ -471,7 +471,7 @@ You may also use [CPM](https://github.com/cpm-cmake/CPM.cmake), like so: CPMAddPackage( NAME fast_float GITHUB_REPOSITORY "fastfloat/fast_float" - GIT_TAG v6.1.6) + GIT_TAG v8.0.0) ``` ## Using as single header @@ -483,7 +483,7 @@ if desired as described in the command line help. You may directly download automatically generated single-header files: - + ## Benchmarking diff --git a/include/fast_float/float_common.h b/include/fast_float/float_common.h index 926fea9..ef499ce 100644 --- a/include/fast_float/float_common.h +++ b/include/fast_float/float_common.h @@ -15,7 +15,7 @@ #endif #include "constexpr_feature_detect.h" -#define FASTFLOAT_VERSION_MAJOR 7 +#define FASTFLOAT_VERSION_MAJOR 8 #define FASTFLOAT_VERSION_MINOR 0 #define FASTFLOAT_VERSION_PATCH 0