Skip to content

Commit

Permalink
pushing version change
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Feb 8, 2025
1 parent 717112d commit 77cc847
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
Expand All @@ -483,7 +483,7 @@ if desired as described in the command line help.

You may directly download automatically generated single-header files:

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

## Benchmarking

Expand Down
2 changes: 1 addition & 1 deletion include/fast_float/float_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

2 comments on commit 77cc847

@BillyONeal
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the future can you do a v8.0.1? Changing copies of 8.0.0 people have already downloaded is problematic even if what they already had was wrong. Related: microsoft/vcpkg#43737

@lemire
Copy link
Member Author

@lemire lemire commented on 77cc847 Feb 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@BillyONeal Sure.

Please sign in to comment.