Skip to content

Commit 77cc847

Browse files
committed
pushing version change
1 parent 717112d commit 77cc847

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.9)
22

3-
project(fast_float VERSION 7.0.0 LANGUAGES CXX)
3+
project(fast_float VERSION 8.0.0 LANGUAGES CXX)
44
set(FASTFLOAT_CXX_STANDARD 11 CACHE STRING "the C++ standard to use for fastfloat")
55
set(CMAKE_CXX_STANDARD ${FASTFLOAT_CXX_STANDARD})
66
option(FASTFLOAT_TEST "Enable tests" OFF)

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ sufficiently recent version of CMake (3.11 or better at least):
455455
FetchContent_Declare(
456456
fast_float
457457
GIT_REPOSITORY https://github.com/fastfloat/fast_float.git
458-
GIT_TAG tags/v6.1.6
458+
GIT_TAG tags/v8.0.0
459459
GIT_SHALLOW TRUE)
460460
461461
FetchContent_MakeAvailable(fast_float)
@@ -471,7 +471,7 @@ You may also use [CPM](https://github.com/cpm-cmake/CPM.cmake), like so:
471471
CPMAddPackage(
472472
NAME fast_float
473473
GITHUB_REPOSITORY "fastfloat/fast_float"
474-
GIT_TAG v6.1.6)
474+
GIT_TAG v8.0.0)
475475
```
476476

477477
## Using as single header
@@ -483,7 +483,7 @@ if desired as described in the command line help.
483483

484484
You may directly download automatically generated single-header files:
485485

486-
<https://github.com/fastfloat/fast_float/releases/download/v7.0.0/fast_float.h>
486+
<https://github.com/fastfloat/fast_float/releases/download/v8.0.0/fast_float.h>
487487

488488
## Benchmarking
489489

include/fast_float/float_common.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#endif
1616
#include "constexpr_feature_detect.h"
1717

18-
#define FASTFLOAT_VERSION_MAJOR 7
18+
#define FASTFLOAT_VERSION_MAJOR 8
1919
#define FASTFLOAT_VERSION_MINOR 0
2020
#define FASTFLOAT_VERSION_PATCH 0
2121

0 commit comments

Comments
 (0)