Skip to content

Commit

Permalink
Full release of 2.4.4.1 -- first official 2.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lgritz committed Sep 30, 2022
1 parent c0e7eb5 commit dab1663
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
11 changes: 9 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Release 2.4 (1 Oct 2022?) -- compared to 2.3
Release 2.4 (1 Oct 2022) -- compared to 2.3
----------------------------------------------
New minimum dependencies and compatibility changes:
* OpenEXR minimum is now 2.3 (raised from 2.0). #3109 (2.4.0)
Expand Down Expand Up @@ -492,7 +492,8 @@ Developer goodies / internals:
support for using TBB for the thread pool (which seems slightly faster
than our internal thread pool). By default it still uses the internal
pool, but if OIIO::attribute("use_tbb") is set to nonzero, it will use
the TBB thread pool if built against TBB. #3473 (2.4.2.2)
the TBB thread pool if built against TBB. #3473 (2.4.2.2) #3566
(2.4.4.0)
* paramlist.h
- Various internal fixes that reduce the amount of ustring construction
that happens when constructing ParamValue and ParamList, and making
Expand Down Expand Up @@ -719,6 +720,12 @@ Notable documentation changes:



Release 2.3.20 (1 Oct 2022) -- compared to 2.3.19
-------------------------------------------------
* Fixes to compile with gcc 12. #3551
* Fixes to compile with clang 15. #3563
* PNG: better error handling when errors are encountered while writing. #3535

Release 2.3.19 (1 Sep 2022) -- compared to 2.3.18
---------------------------------------------------
* idiff: `--allowfailures` allows the specified number of pixels to differ by
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
# https://github.com/OpenImageIO/oiio

cmake_minimum_required (VERSION 3.12)
project (OpenImageIO VERSION 2.4.4.0
project (OpenImageIO VERSION 2.4.4.1
HOMEPAGE_URL "https://openimageio.org"
LANGUAGES CXX C)
set (PROJ_NAME OIIO) # short name, caps
string (TOLOWER ${PROJ_NAME} PROJ_NAME_LOWER) # short name lower case
string (TOUPPER ${PROJ_NAME} PROJ_NAME_UPPER) # short name upper case
set (PROJECT_VERSION_RELEASE_TYPE "RC1" CACHE STRING
set (PROJECT_VERSION_RELEASE_TYPE "" CACHE STRING
"Build type, for example: dev, beta2, RC1 (empty string for normal release)")
set (${PROJECT_NAME}_VERSION_RELEASE_TYPE ${PROJECT_VERSION_RELEASE_TYPE})
set (PROJECT_AUTHORS "Contributors to the OpenImageIO project")
Expand Down

0 comments on commit dab1663

Please sign in to comment.