Skip to content

Commit 58746ca

Browse files
jan-wassenbergcopybara-github
authored andcommitted
1.0.3 release candidate
PiperOrigin-RevId: 503124853
1 parent 9993822 commit 58746ca

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
@@ -25,7 +25,7 @@ if(POLICY CMP0111)
2525
cmake_policy(SET CMP0111 OLD)
2626
endif()
2727

28-
project(hwy VERSION 1.0.2) # Keep in sync with highway.h version
28+
project(hwy VERSION 1.0.3) # 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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
highway (1.0.3-1) UNRELEASED; urgency=medium
2+
3+
* Add RearrangeToOddPlusEven, Xor3, 8-bit CompressStore, HWY_ASSUME
4+
* Add contrib/bit_pack for 8/16-bit lanes
5+
* Add WASM_EMU256 target
6+
* Documentation improvements
7+
* Allow opting out of C++ stdlib usage for Compiler Explorer
8+
* Update for new RVV intrinsics; faster WASM min/max and extmul/q15mul
9+
* Fix UB, GCC atomic
10+
11+
-- Jan Wassenberg <[email protected]> Thu, 19 Jan 2023 13:00:00 +0200
12+
113
highway (1.0.2-1) UNRELEASED; urgency=medium
214

315
* Add ExclusiveNeither, FindKnownFirstTrue, Ne128

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

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

0 commit comments

Comments
 (0)