File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11## Changelog
22
3+ ### [ 1.10.1] - 2022-11-02
4+ #### Fixed
5+ - fix broken sse2 support
6+
37### [ 1.10.0] - 2022-10-29
48#### Fixed
59- fix bug in ` Levenshtein.editops ` leading to crashes when used with ` score_hint `
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ if (CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
2020 message (FATAL_ERROR "Building in-source is not supported! Create a build dir and remove ${CMAKE_SOURCE_DIR } /CMakeCache.txt" )
2121endif ()
2222
23- project (rapidfuzz LANGUAGES CXX VERSION 1.10.0 )
23+ project (rapidfuzz LANGUAGES CXX VERSION 1.10.1 )
2424
2525list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR } /cmake" )
2626include (GNUInstallDirs )
Original file line number Diff line number Diff line change 11// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
22// SPDX-License-Identifier: MIT
33// RapidFuzz v1.0.2
4- // Generated: 2022-10-30 00:14:59.369071
4+ // Generated: 2022-11-02 21:25:29.646502
55// ----------------------------------------------------------
66// This file is an amalgamation of multiple different files.
77// You probably shouldn't edit it directly.
@@ -2258,7 +2258,6 @@ native_simd<T> operator~(const native_simd<T>& a) noexcept
22582258# include < emmintrin.h>
22592259# include < ostream>
22602260# include < stdint.h>
2261- # include < tmmintrin.h>
22622261
22632262namespace rapidfuzz {
22642263namespace detail {
Original file line number Diff line number Diff line change 77#include < ostream>
88#include < rapidfuzz/details/intrinsics.hpp>
99#include < stdint.h>
10- #include < tmmintrin.h>
1110
1211namespace rapidfuzz {
1312namespace detail {
You can’t perform that action at this time.
0 commit comments