Skip to content

Commit 46e365d

Browse files
jan-wassenbergcopybara-github
authored andcommitted
1.0.4 release candidate
PiperOrigin-RevId: 517406503
1 parent e3fb207 commit 46e365d

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CMakeLists.txt

+1-1
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.3) # Keep in sync with highway.h version
28+
project(hwy VERSION 1.0.4) # Keep in sync with highway.h version
2929
# `hwy` is lowercase to handle find_package() in Config mode:
3030
set(namespace "${PROJECT_NAME}::")
3131

debian/changelog

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
highway (1.0.4-1) UNRELEASED; urgency=medium
2+
3+
* Add PPC8..10, SSE2, AVX3_ZEN4, NEON_WITHOUT_AES targets
4+
* Add Expand, LoadExpand, integer AbsDiff, SumsOf8AbsDiff
5+
* Improved Half/Twice support, codegen for Shift*Same
6+
* Support Wasm in Godbolt
7+
* Faster KV128 sorting
8+
* Fix armv7 build config, CMake config mode
9+
* Update RVV intrinsics for 1.0-draft
10+
11+
-- Jan Wassenberg <[email protected]> Fri, 17 Mar 2023 15:00:00 +0200
12+
113
highway (1.0.3-1) UNRELEASED; urgency=medium
214

315
* Add RearrangeToOddPlusEven, Xor3, 8-bit CompressStore, HWY_ASSUME

hwy/highway.h

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

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

0 commit comments

Comments
 (0)