Skip to content

Commit

Permalink
Prepare for v1.2.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fboemer committed Nov 2, 2021
1 parent accf7a5 commit 0858760
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
# Define env vars #
###################
env:
HEXL_VER: 1.2.2
HEXL_VER: 1.2.3
HEXL_DIR: ${GITHUB_WORKSPACE}/lib/cmake/hexl-${HEXL_VER}
HEXL_HINT_DIR: >
-DHEXL_HINT_DIR=${GITHUB_WORKSPACE}/lib/cmake/hexl-${HEXL_VER}
Expand Down
6 changes: 5 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Changes

## Version 1.2.2
## Version 1.2.3
- Fix to EltwiseReduceMod on AVX512-DQ processors (https://github.com/intel/hexl/issues/86)
- Update minimum CMake version to 3.13
- Fixes 3rd-party dependency commits (https://github.com/intel/hexl/pull/85)

## Version 1.2.2
- Fixes Barrett reduce native benchmark (https://github.com/intel/hexl/pull/65)
- Fixes 32 bit invntt (https://github.com/intel/hexl/pull/73)
- Fixes CMake 3.13 compilation (https://github.com/intel/hexl/pull/67)
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# target_link_options and cmake -S . -B build require cmake 3.13
cmake_minimum_required(VERSION 3.13)
project(HEXL VERSION 1.2.2 LANGUAGES C CXX)
project(HEXL VERSION 1.2.3 LANGUAGES C CXX)

include(CheckCCompilerFlag)
include(CheckCXXCompilerFlag)
Expand Down
2 changes: 1 addition & 1 deletion example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To use Intel HEXL in an external application, you can use one of the three provi
* Install Intel HEXL. Then, in your external application, add the following lines to your `CMakeLists.txt`:

```bash
find_package(HEXL 1.2.2
find_package(HEXL 1.2.3
HINTS ${HEXL_HINT_DIR}
REQUIRED)
target_link_libraries(<your target> HEXL::hexl)
Expand Down
2 changes: 1 addition & 1 deletion example/cmake/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.13)
set(CMAKE_CXX_STANDARD 11)

# Example using source
find_package(HEXL 1.2.2
find_package(HEXL 1.2.3
HINTS ${HEXL_HINT_DIR}
REQUIRED)
if (NOT TARGET HEXL::hexl)
Expand Down
2 changes: 1 addition & 1 deletion port/hexl/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ vcpkg_cmake_configure(
)

vcpkg_cmake_install()
vcpkg_cmake_config_fixup(PACKAGE_NAME "HEXL" CONFIG_PATH "lib/cmake/hexl-1.2.2")
vcpkg_cmake_config_fixup(PACKAGE_NAME "HEXL" CONFIG_PATH "lib/cmake/hexl-1.2.3")

vcpkg_fixup_pkgconfig()

Expand Down
2 changes: 1 addition & 1 deletion port/hexl/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hexl",
"version": "1.2.2",
"version": "1.2.3",
"description": "Intel® HEXL is an open-source library which provides efficient implementations of integer arithmetic on Galois fields.",
"homepage": "https://github.com/intel/hexl",
"supports": "x64 & !(windows & !static)",
Expand Down

0 comments on commit 0858760

Please sign in to comment.