Skip to content

Commit dd77fb5

Browse files
committed
v8.2.0
1 parent b4d26ec commit dd77fb5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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.1.1 LANGUAGES CXX)
4+
project(fast_float VERSION 8.2.0 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
@@ -533,7 +533,7 @@ sufficiently recent version of CMake (3.11 or better at least):
533533
FetchContent_Declare(
534534
fast_float
535535
GIT_REPOSITORY https://github.com/fastfloat/fast_float.git
536-
GIT_TAG tags/v8.1.1
536+
GIT_TAG tags/v8.2.0
537537
GIT_SHALLOW TRUE)
538538
539539
FetchContent_MakeAvailable(fast_float)
@@ -549,7 +549,7 @@ You may also use [CPM](https://github.com/cpm-cmake/CPM.cmake), like so:
549549
CPMAddPackage(
550550
NAME fast_float
551551
GITHUB_REPOSITORY "fastfloat/fast_float"
552-
GIT_TAG v8.1.1)
552+
GIT_TAG v8.2.0)
553553
```
554554

555555
## Using as single header
@@ -561,7 +561,7 @@ if desired as described in the command line help.
561561

562562
You may directly download automatically generated single-header files:
563563

564-
<https://github.com/fastfloat/fast_float/releases/download/v8.1.1/fast_float.h>
564+
<https://github.com/fastfloat/fast_float/releases/download/v8.2.0/fast_float.h>
565565

566566
## Benchmarking
567567

include/fast_float/float_common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
#include "constexpr_feature_detect.h"
1717

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

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

0 commit comments

Comments
 (0)