Skip to content

Commit ba0900a

Browse files
jan-wassenbergcopybara-github
authored andcommitted
Highway 1.0.7 RC
PiperOrigin-RevId: 561096993
1 parent 448bb3c commit ba0900a

File tree

5 files changed

+14
-4
lines changed

5 files changed

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

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module(name = "highway", version = "1.0.6")
1+
module(name = "highway", version = "1.0.7")
22

33
bazel_dep(name = "bazel_skylib", version = "1.3.0")
44
bazel_dep(name = "googletest", version = "1.12.1")

debian/changelog

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
highway (1.0.7-1) UNRELEASED; urgency=medium
2+
3+
* Add LoadNOr, GatherIndexN, ScatterIndexN
4+
* Add additional float<->int conversions
5+
* Codegen improvements for 8-bit shift, PPC Compress/Expand
6+
* Fixes for MSVC, PPC, RVV, WASM, GCC 13, GCC 8.2, i686, f16 type, QEMU 7.2
7+
* Support CMake args in Debian packaging
8+
9+
-- Jan Wassenberg <[email protected]> Tue, 29 Aug 2023 19:00:00 +0200
10+
111
highway (1.0.6-1) UNRELEASED; urgency=medium
212

313
* Add MaskedGatherIndex, MaskedScatterIndex, LoadN, StoreN

g3doc/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Q0.0: How do I **get the Highway library**?
88

99
A: Highway is available in numerous package managers, e.g. under the name
1010
libhwy-dev. After installing, you can add it to your CMake-based build via
11-
`find_package(HWY 1.0.6)` and `target_link_libraries(your_project PRIVATE hwy)`.
11+
`find_package(HWY 1.0.7)` and `target_link_libraries(your_project PRIVATE hwy)`.
1212

1313
Alternatively, if using Git for version control, you can use Highway as a
1414
'submodule' by adding the following to .gitmodules:

hwy/highway.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ namespace hwy {
3333
// API version (https://semver.org/); keep in sync with CMakeLists.txt.
3434
#define HWY_MAJOR 1
3535
#define HWY_MINOR 0
36-
#define HWY_PATCH 6
36+
#define HWY_PATCH 7
3737

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

0 commit comments

Comments
 (0)