Skip to content

Commit c2346fa

Browse files
committed
update version, changes.md
1 parent e5100c2 commit c2346fa

File tree

4 files changed

+18
-7
lines changed

4 files changed

+18
-7
lines changed

CHANGES.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# Changes
22

3-
## 1.0.1
4-
- Remove intel- prefix from headers and library name
5-
- Fix CMake variables from 3rd party libraries from leaking
6-
- Fix warnings when HEXL_DEBUG=ON
3+
## Version 1.1.0
4+
- Added vector-vector and vector-scalar EltwiseSubMod
5+
- Added vector-scalar version of EltwiseAddMod
6+
- Added generic 128-bit division for Windows build
7+
- Documentation hosted on a separate branch
8+
- Enabled custom allocator for NTT class
9+
- Fixed argument order in EltwiseReduceMod
10+
- Fixed build warnings on Windows and Mac
11+
12+
13+
14+
## Version 1.0.1
15+
- Removed intel- prefix from headers and library name
16+
- Fixed CMake variables from 3rd party libraries from leaking
17+
- Fixed warnings when HEXL_DEBUG=ON

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
cmake_minimum_required(VERSION 3.5.1)
5-
project(HEXL VERSION 1.0.1 LANGUAGES C CXX)
5+
project(HEXL VERSION 1.1.0 LANGUAGES C CXX)
66

77
include(CheckCCompilerFlag)
88
include(CheckCXXCompilerFlag)

example/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ project(hexl_example LANGUAGES C CXX)
55
cmake_minimum_required(VERSION 3.5.1)
66
set(CMAKE_CXX_STANDARD 11)
77

8-
find_package(HEXL 1.0.1
8+
find_package(HEXL 1.1.0
99
HINTS ${HEXL_HINT_DIR}
1010
REQUIRED)
1111
if (NOT TARGET HEXL::hexl)

example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ To use Intel HEXL in an external application, first build Intel HEXL with `HEXL_
55
Next, in your external application, add the following lines to your `CMakeLists.txt`:
66

77
```bash
8-
find_package(HEXL 1.0.1
8+
find_package(HEXL 1.1.0
99
HINTS ${HEXL_HINT_DIR}
1010
REQUIRED)
1111
target_link_libraries(<your target> hexl)

0 commit comments

Comments
 (0)