From 58746ca5b9f9444a2a3549704602ecc6239f8f41 Mon Sep 17 00:00:00 2001 From: Jan Wassenberg Date: Thu, 19 Jan 2023 04:13:29 -0800 Subject: [PATCH] 1.0.3 release candidate PiperOrigin-RevId: 503124853 --- CMakeLists.txt | 2 +- debian/changelog | 12 ++++++++++++ hwy/highway.h | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e01990b6ac..bb861053ea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ if(POLICY CMP0111) cmake_policy(SET CMP0111 OLD) endif() -project(hwy VERSION 1.0.2) # Keep in sync with highway.h version +project(hwy VERSION 1.0.3) # Keep in sync with highway.h version # Directly define the ABI version from the cmake project() version values: set(LIBRARY_VERSION "${hwy_VERSION}") diff --git a/debian/changelog b/debian/changelog index 36d0c1de03..965d078b2e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +highway (1.0.3-1) UNRELEASED; urgency=medium + +* Add RearrangeToOddPlusEven, Xor3, 8-bit CompressStore, HWY_ASSUME +* Add contrib/bit_pack for 8/16-bit lanes +* Add WASM_EMU256 target +* Documentation improvements +* Allow opting out of C++ stdlib usage for Compiler Explorer +* Update for new RVV intrinsics; faster WASM min/max and extmul/q15mul +* Fix UB, GCC atomic + + -- Jan Wassenberg Thu, 19 Jan 2023 13:00:00 +0200 + highway (1.0.2-1) UNRELEASED; urgency=medium * Add ExclusiveNeither, FindKnownFirstTrue, Ne128 diff --git a/hwy/highway.h b/hwy/highway.h index 4640f31e8d..8a7a7531e5 100644 --- a/hwy/highway.h +++ b/hwy/highway.h @@ -29,7 +29,7 @@ namespace hwy { // API version (https://semver.org/); keep in sync with CMakeLists.txt. #define HWY_MAJOR 1 #define HWY_MINOR 0 -#define HWY_PATCH 2 +#define HWY_PATCH 3 //------------------------------------------------------------------------------ // Shorthand for tags (defined in shared-inl.h) used to select overloads.