Skip to content

Commit 01ce95d

Browse files
committed
v8.2.3
1 parent d5717d4 commit 01ce95d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.14)
22

33

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ sufficiently recent version of CMake (3.11 or better at least):
536536
FetchContent_Declare(
537537
fast_float
538538
GIT_REPOSITORY https://github.com/fastfloat/fast_float.git
539-
GIT_TAG tags/v8.2.2
539+
GIT_TAG tags/v8.2.3
540540
GIT_SHALLOW TRUE)
541541
542542
FetchContent_MakeAvailable(fast_float)
@@ -552,7 +552,7 @@ You may also use [CPM](https://github.com/cpm-cmake/CPM.cmake), like so:
552552
CPMAddPackage(
553553
NAME fast_float
554554
GITHUB_REPOSITORY "fastfloat/fast_float"
555-
GIT_TAG v8.2.2)
555+
GIT_TAG v8.2.3)
556556
```
557557

558558
## Using as single header
@@ -564,7 +564,7 @@ if desired as described in the command line help.
564564

565565
You may directly download automatically generated single-header files:
566566

567-
<https://github.com/fastfloat/fast_float/releases/download/v8.2.2/fast_float.h>
567+
<https://github.com/fastfloat/fast_float/releases/download/v8.2.3/fast_float.h>
568568

569569
## Benchmarking
570570

include/fast_float/float_common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#define FASTFLOAT_VERSION_MAJOR 8
2020
#define FASTFLOAT_VERSION_MINOR 2
21-
#define FASTFLOAT_VERSION_PATCH 2
21+
#define FASTFLOAT_VERSION_PATCH 3
2222

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

0 commit comments

Comments
 (0)