File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ if(POLICY CMP0083)
1919 cmake_policy (SET CMP0083 NEW)
2020endif ()
2121
22- project (hwy VERSION 1.0.0 ) # Keep in sync with highway.h version
22+ project (hwy VERSION 1.0.1 ) # Keep in sync with highway.h version
2323
2424# Directly define the ABI version from the cmake project() version values:
2525set (LIBRARY_VERSION "${hwy_VERSION} " )
Original file line number Diff line number Diff line change 1+ highway (1.0.1-1) UNRELEASED; urgency=medium
2+
3+ * Add Eq128, i64 Mul, unsigned->float ConvertTo
4+ * Faster sort for few unique keys, more robust pivot selection
5+ * Fix: floating-point generator for sort tests, Min/MaxOfLanes for i16
6+ * Fix: avoid always_inline in debug, link atomic
7+ * GCC warnings: string.h, maybe-uninitialized, ignored-attributes
8+ * GCC warnings: preprocessor int overflow, spurious use-after-free/overflow
9+ * Doc: <=HWY_AVX3, Full32/64/128, how to use generic-inl
10+
11+ -- Jan Wassenberg <
[email protected] > Tue, 23 Aug 2022 10:00:00 +0200
12+
113highway (1.0.0-1) UNRELEASED; urgency=medium
214
315* ABI change: 64-bit target values, more room for expansion
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ namespace hwy {
2929// API version (https://semver.org/); keep in sync with CMakeLists.txt.
3030#define HWY_MAJOR 1
3131#define HWY_MINOR 0
32- #define HWY_PATCH 0
32+ #define HWY_PATCH 1
3333
3434// ------------------------------------------------------------------------------
3535// Shorthand for tags (defined in shared-inl.h) used to select overloads.
You can’t perform that action at this time.
0 commit comments