Skip to content

Commit

Permalink
Highway 1.0.7 RC
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 561096993
  • Loading branch information
jan-wassenberg authored and copybara-github committed Aug 29, 2023
1 parent 448bb3c commit ba0900a
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if(POLICY CMP0111)
cmake_policy(SET CMP0111 OLD)
endif()

project(hwy VERSION 1.0.6) # Keep in sync with highway.h version
project(hwy VERSION 1.0.7) # Keep in sync with highway.h version
# `hwy` is lowercase to handle find_package() in Config mode:
set(namespace "${PROJECT_NAME}::")

Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module(name = "highway", version = "1.0.6")
module(name = "highway", version = "1.0.7")

bazel_dep(name = "bazel_skylib", version = "1.3.0")
bazel_dep(name = "googletest", version = "1.12.1")
Expand Down
10 changes: 10 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
highway (1.0.7-1) UNRELEASED; urgency=medium

* Add LoadNOr, GatherIndexN, ScatterIndexN
* Add additional float<->int conversions
* Codegen improvements for 8-bit shift, PPC Compress/Expand
* Fixes for MSVC, PPC, RVV, WASM, GCC 13, GCC 8.2, i686, f16 type, QEMU 7.2
* Support CMake args in Debian packaging

-- Jan Wassenberg <[email protected]> Tue, 29 Aug 2023 19:00:00 +0200

highway (1.0.6-1) UNRELEASED; urgency=medium

* Add MaskedGatherIndex, MaskedScatterIndex, LoadN, StoreN
Expand Down
2 changes: 1 addition & 1 deletion g3doc/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Q0.0: How do I **get the Highway library**?

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

Alternatively, if using Git for version control, you can use Highway as a
'submodule' by adding the following to .gitmodules:
Expand Down
2 changes: 1 addition & 1 deletion hwy/highway.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,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 6
#define HWY_PATCH 7

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

0 comments on commit ba0900a

Please sign in to comment.