Skip to content

Commit 293693e

Browse files
jan-wassenbergcopybara-github
authored andcommitted
1.0.2 release candidate
PiperOrigin-RevId: 484462458
1 parent 70bc6dc commit 293693e

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if(POLICY CMP0111)
2525
cmake_policy(SET CMP0111 OLD)
2626
endif()
2727

28-
project(hwy VERSION 1.0.1) # Keep in sync with highway.h version
28+
project(hwy VERSION 1.0.2) # Keep in sync with highway.h version
2929

3030
# Directly define the ABI version from the cmake project() version values:
3131
set(LIBRARY_VERSION "${hwy_VERSION}")

debian/changelog

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
highway (1.0.2-1) UNRELEASED; urgency=medium
2+
3+
* Add ExclusiveNeither, FindKnownFirstTrue, Ne128
4+
* Add 16-bit SumOfLanes/ReorderWidenMulAccumulate/ReorderDemote2To
5+
* Faster sort for low-entropy input, improved pivot selection
6+
* Add GN build system, Highway FAQ, k32v32 type to vqsort
7+
* CMake: Support find_package(GTest), add rvv-inl.h, add HWY_ENABLE_TESTS
8+
* Fix MIPS and C++20 build, Apple LLVM 10.3 detection, EMU128 AllTrue on RVV
9+
* Fix missing exec_prefix, RVV build, warnings, libatomic linking
10+
* Work around GCC 10.4 issue, disabled RDCYCLE, arm7 with vfpv3
11+
* Documentation/example improvements
12+
* Support static dispatch to SVE2_128 and SVE_256
13+
14+
-- Jan Wassenberg <[email protected]> Thu, 27 Oct 2022 17:00:00 +0200
15+
116
highway (1.0.1-1) UNRELEASED; urgency=medium
217

318
* Add Eq128, i64 Mul, unsigned->float ConvertTo

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 1
32+
#define HWY_PATCH 2
3333

3434
//------------------------------------------------------------------------------
3535
// Shorthand for tags (defined in shared-inl.h) used to select overloads.

0 commit comments

Comments
 (0)