Skip to content

Commit 3ec6904

Browse files
committed
v3.1.8 commits and release notes
Signed-off-by: Cary Phillips <[email protected]>
1 parent 775167e commit 3ec6904

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

CHANGES.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Imath Release Notes
22

3+
* [Version 3.1.8](#version-318-May-22-2023) May 22, 2023
34
* [Version 3.1.7](#version-317-March-1-2023) March 1, 2023
45
* [Version 3.1.6](#version-316-november-7-2022) November 7, 2022
56
* [Version 3.1.5](#version-315-march-28-2022) March 28, 2022
@@ -16,6 +17,29 @@
1617
* [Version 3.0.0-beta](#version-300-beta-march-15-2021) March 15, 2021
1718
* [Inherited History from OpenEXR](#inherited-history-from-openexr)
1819

20+
## Version 3.1.8 (May 22, 2023)
21+
22+
Patch release that addresses miscellaneous minor compiler/build/doc
23+
issues and extends test coverage.
24+
25+
### Merged Pull Requests
26+
27+
* \[[#318](https://github.com/AcademySoftwareFoundation/Imath/pull/318)\] Separate CI job for docs
28+
* \[[#317](https://github.com/AcademySoftwareFoundation/Imath/pull/317)\] fix the macro switching half-precision floating-point format implementation.
29+
* \[[#315](https://github.com/AcademySoftwareFoundation/Imath/pull/315)\] Updated Mac and Windows jobs for VFX platform 2023.
30+
* \[[#314](https://github.com/AcademySoftwareFoundation/Imath/pull/314)\] Remove duplicate IMATH_HOSTDEVICE
31+
* \[[#313](https://github.com/AcademySoftwareFoundation/Imath/pull/313)\] IMATH_EXPORT for Rand32::nextf()
32+
* \[[#310](https://github.com/AcademySoftwareFoundation/Imath/pull/310)\] Extend test coverage
33+
* \[[#309](https://github.com/AcademySoftwareFoundation/Imath/pull/309)\] Undo #307, restore array-based Matrix constructors
34+
* \[[#308](https://github.com/AcademySoftwareFoundation/Imath/pull/308)\] Fix run_gcov.sh to use proper _build/_coverage dirs
35+
* \[[#307](https://github.com/AcademySoftwareFoundation/Imath/pull/307)\] Conditionally include Matrix constructors duplicated by interop declarations
36+
* \[[#306](https://github.com/AcademySoftwareFoundation/Imath/pull/306)\] Fix coverage analysis for .c files
37+
* \[[#305](https://github.com/AcademySoftwareFoundation/Imath/pull/305)\] Extend test code coverage and add missing python bindings
38+
* \[[#303](https://github.com/AcademySoftwareFoundation/Imath/pull/303)\] Remove unused variables
39+
* \[[#302](https://github.com/AcademySoftwareFoundation/Imath/pull/302)\] In testMatrix(), call fabs() instead of fabsf() for double values
40+
* \[[#300](https://github.com/AcademySoftwareFoundation/Imath/pull/300)\] Check return status of extractSHRT in computeRSMatrix
41+
42+
1943
## Version 3.1.7 (March 1, 2023)
2044

2145
Patch release with miscellaneous bug/doc/build fixes. In particular:

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ endif()
1414

1515
# Imath version
1616

17-
project(Imath VERSION 3.1.7 LANGUAGES C CXX)
17+
project(Imath VERSION 3.1.8 LANGUAGES C CXX)
1818

1919
set(IMATH_VERSION_RELEASE_TYPE "" CACHE STRING "Extra version tag string for Imath build, such as -dev, -beta1, etc.")
2020

@@ -38,9 +38,9 @@ set(IMATH_VERSION_API "${Imath_VERSION_MAJOR}_${Imath_VERSION_MINOR}")
3838
# 2. API added: CURRENT+1.0.AGE+1
3939
# 3. API changed: CURRENT+1.0.0
4040
#
41-
set(IMATH_LIBTOOL_CURRENT 30)
41+
set(IMATH_LIBTOOL_CURRENT 31)
4242
set(IMATH_LIBTOOL_REVISION 0)
43-
set(IMATH_LIBTOOL_AGE 1)
43+
set(IMATH_LIBTOOL_AGE 0)
4444
set(IMATH_LIB_VERSION "${IMATH_LIBTOOL_CURRENT}.${IMATH_LIBTOOL_REVISION}.${IMATH_LIBTOOL_AGE}")
4545
set(IMATH_LIB_SOVERSION ${IMATH_LIBTOOL_CURRENT})
4646

0 commit comments

Comments
 (0)