Skip to content

Commit 22e3d72

Browse files
jan-wassenbergcopybara-github
authored andcommitted
1.0.1 RC
PiperOrigin-RevId: 469746427
1 parent edcbb0a commit 22e3d72

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if(POLICY CMP0083)
1919
cmake_policy(SET CMP0083 NEW)
2020
endif()
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:
2525
set(LIBRARY_VERSION "${hwy_VERSION}")

debian/changelog

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
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+
113
highway (1.0.0-1) UNRELEASED; urgency=medium
214

315
* ABI change: 64-bit target values, more room for expansion

hwy/highway.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)