Skip to content

Commit e407f66

Browse files
[release] Bumping version to 0.4.1 (hotfix)
1 parent b75eb84 commit e407f66

File tree

4 files changed

+31
-10
lines changed

4 files changed

+31
-10
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
with:
132132
image: centos:7
133133
cmd: |
134-
export OPENPGL_RELEASE_PACKAGE_VERSION=0.4.0
134+
export OPENPGL_RELEASE_PACKAGE_VERSION=0.4.1
135135
gitlab/release/linux.sh
136136
artifact-out: release-linux
137137
artifact-path: ./openpgl*.gz
@@ -145,8 +145,8 @@ jobs:
145145
artifact-out: release-windows
146146
artifact-path: ./openpgl*.zip
147147
cmd: |
148-
$env:OPENPGL_RELEASE_PACKAGE_VERSION="0.4.0"
149-
$OPENPGL_RELEASE_PACKAGE_VERSION="0.4.0"
148+
$env:OPENPGL_RELEASE_PACKAGE_VERSION="0.4.1"
149+
$OPENPGL_RELEASE_PACKAGE_VERSION="0.4.1"
150150
gitlab/release/windows.ps1 "Visual Studio 15 2017 Win64" "v141"
151151
152152
release-macos:
@@ -158,7 +158,7 @@ jobs:
158158
artifact-out: release-macos
159159
artifact-path: ./*.zip
160160
cmd: |
161-
export OPENPGL_RELEASE_PACKAGE_VERSION="0.4.0"
161+
export OPENPGL_RELEASE_PACKAGE_VERSION="0.4.1"
162162
gitlab/release/macos.sh
163163
164164
#release-macos-arm:
@@ -170,7 +170,7 @@ jobs:
170170
# artifact-out: release-macos-arm
171171
# artifact-path: ./*.zip
172172
# cmd: |
173-
# export OPENPGL_RELEASE_PACKAGE_VERSION="0.4.0"
173+
# export OPENPGL_RELEASE_PACKAGE_VERSION="0.4.1"
174174
# gitlab/release/macos.sh -DBUILD_TBB_FROM_SOURCE=ON
175175

176176
## Binary Scan Jobs ##

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Version History
22
===============
33

4+
## Open PGL 0.4.1
5+
- Bugfixes:
6+
- Fixing bug introduced in `0.4.0` when using
7+
`ApplySingleLobeHenyeyGreensteinProduct()` for VMM-based
8+
representations
9+
410
## Open PGL 0.4.0
511

612
- Performance:

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,12 @@ set(CMAKE_DISABLE_SOURCE_CHANGES ON)
1717
set(CMAKE_DISABLE_IN_SOURCE_BUILD ON)
1818
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
1919

20+
enable_language(CXX)
2021
include(GNUInstallDirs)
2122

2223
## Establish project ##
2324

24-
project(openpgl VERSION 0.4.0 LANGUAGES C CXX)
25+
project(openpgl VERSION 0.4.1 LANGUAGES C CXX)
2526

2627
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/cmake)
2728
include(openpgl_macros)

README.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Intel® Open Path Guiding Library
22

3-
This is release v0.4.0 of Intel® Open PGL. For changes and new features,
3+
This is release v0.4.1 of Intel® Open PGL. For changes and new features,
44
see the [changelog](CHANGELOG.md). Visit http://www.openpgl.org for more
55
information.
66

@@ -48,6 +48,13 @@ specification is still in flux and might change with upcoming releases.
4848

4949
# Version History
5050

51+
## Open PGL 0.4.1
52+
53+
- Bugfixes:
54+
- Fixing bug introduced in `0.4.0` when using
55+
`ApplySingleLobeHenyeyGreensteinProduct()` for VMM-based
56+
representations
57+
5158
## Open PGL 0.4.0
5259

5360
- Performance:
@@ -257,10 +264,17 @@ Configure the Open PGL build using:
257264
- `OPENPGL_ISA_AVX512` if Open PGL is compiled with AVX-512
258265
support (default `OFF`).
259266

260-
- `embree_DIR` location of the Embree CMake configuration file
261-
(e.g., \[embree\_install\]/lib/cmake/embree-3.6.1).
267+
- `OPENPGL_ISA_NEON` and `OPENPGL_ISA_NEON2X` if Open PGL is
268+
compiled with NEON or double pumped NEON support (default
269+
`OFF`).
270+
271+
- `OPENPGL_LIBRARY_NAME`: Specifies the name of the Open PGL
272+
library file created. By default the name `openpgl` is used.
262273

263274
- `OPENPGL_TBB_ROOT` location of the TBB installation.
275+
276+
- `OPENPGL_TBB_COMPONENT` the name of the TBB component/library
277+
(default `tbb`).
264278

265279
Build and install Open PGL using:
266280

@@ -281,7 +295,7 @@ To make CMake aware of Open PGL’s CMake configuration scripts the
281295
`openpgl_DIR` has to be set to their location during configuration:
282296

283297
``` bash
284-
cmake -Dopenpgl_DIR=[openpgl_install]/lib/cmake/openpgl-0.4.0 ..
298+
cmake -Dopenpgl_DIR=[openpgl_install]/lib/cmake/openpgl-0.4.1 ..
285299
```
286300

287301
After that, adding OpenPGL to a CMake project/target is done by first

0 commit comments

Comments
 (0)