Skip to content

Commit 50a80a7

Browse files
committed
v8.0.2
1 parent f9bed3f commit 50a80a7

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 8.0.1 LANGUAGES CXX)
3+
project(fast_float VERSION 8.0.2 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/v8.0.1
458+
GIT_TAG tags/v8.0.2
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 v8.0.1)
474+
GIT_TAG v8.0.2)
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/v8.0.1/fast_float.h>
486+
<https://github.com/fastfloat/fast_float/releases/download/v8.0.2/fast_float.h>
487487

488488
## Benchmarking
489489

include/fast_float/float_common.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#define FASTFLOAT_VERSION_MAJOR 8
1919
#define FASTFLOAT_VERSION_MINOR 0
20-
#define FASTFLOAT_VERSION_PATCH 1
20+
#define FASTFLOAT_VERSION_PATCH 2
2121

2222
#define FASTFLOAT_STRINGIZE_IMPL(x) #x
2323
#define FASTFLOAT_STRINGIZE(x) FASTFLOAT_STRINGIZE_IMPL(x)

0 commit comments

Comments
 (0)