Skip to content

Commit 7ae8529

Browse files
committed
Stage 2.5.3.2-rc1
Signed-off-by: Larry Gritz <[email protected]>
1 parent 962b3f6 commit 7ae8529

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

CHANGES.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Release 2.5 (Fall 2023) -- compared to 2.4
33

44
Beta 1 (2.5.3.0): 2023-09-04
55
Beta 2 (2.5.3.1): 2023-09-24
6+
RC1 (2.5.3.2): 2023-09-27
67

78
### New minimum dependencies and compatibility changes:
89
* CMake: minimum needed to build OpenImageIO has been raised from 3.12 to
@@ -50,7 +51,8 @@ Beta 2 (2.5.3.1): 2023-09-24
5051
equivalent to these, even if they are named something totally different,
5152
thanks to the magic of OCIO 2.2 built-in configs. For older OCIO (2.1 or
5253
older), it is less robust and may have to make best guesses based on the
53-
name of the color spaces it finds. #3707 (2.5.0.0)
54+
name of the color spaces it finds. [#3707](https://github.com/OpenImageIO/oiio/pull/3707) (2.5.0.0)
55+
[#3995](https://github.com/OpenImageIO/oiio/pull/3995) (2.5.3.2-rc1)
5456
- New ColorConfig methods: `getAliases()` #3662; `isColorSpaceLinear()`
5557
#3662; `resolve(name)` turns any color space name, alias, role, or OIIO
5658
name (like "sRGB") into a canonical color space name;
@@ -334,6 +336,10 @@ Beta 2 (2.5.3.1): 2023-09-24
334336
- Write out proper tiff header version in png EXIF blobs
335337
[#3984](https://github.com/OpenImageIO/oiio/pull/3984) (by Jesse
336338
Yurkovich) (2.5.3.1-beta2)
339+
- A variety of minor optimizations to the PNG writer
340+
[#3980](https://github.com/OpenImageIO/oiio/pull/3980) (2.5.3.2-rc1)
341+
- Improve PNG write data quality when alpha is low
342+
[#3985](https://github.com/OpenImageIO/oiio/pull/3985) (2.5.3.2-rc1)
337343
* PSD:
338344
- Fix a PSD read error on ARM architecture. #3589 (2.4.5/2.5.0.0)
339345
- Protect against corrupted embedded thumbnails. (TALOS-2022-1626,
@@ -434,6 +440,7 @@ Beta 2 (2.5.3.1): 2023-09-24
434440
- Fix a wrong result with `fast_exp2()` with MSVS and sse4.2.
435441
[#3804](https://github.com/OpenImageIO/oiio/pull/3804) (by Eric Mehl)
436442
(2.5.1.0/2.4.11)
443+
- Prevent infinite loop in bit_range_convert [#3996](https://github.com/OpenImageIO/oiio/pull/3996) (by Jesse Yurkovich) (2.5.3.2-rc1)
437444
* platform.h:
438445
- New macros for detecting MSVS 2019 and 2022. #3727 (2.5.0.0/2.4.8.0)
439446
* simd.h:

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
cmake_minimum_required (VERSION 3.15)
66

7-
set (OpenImageIO_VERSION "2.5.3.1")
7+
set (OpenImageIO_VERSION "2.5.3.2")
88
set (OpenImageIO_VERSION_OVERRIDE "" CACHE STRING
99
"Version override (use with caution)!")
1010
mark_as_advanced (OpenImageIO_VERSION_OVERRIDE)
@@ -19,7 +19,7 @@ project (OpenImageIO VERSION ${OpenImageIO_VERSION}
1919
set (PROJ_NAME OIIO) # short name, caps
2020
string (TOLOWER ${PROJ_NAME} PROJ_NAME_LOWER) # short name lower case
2121
string (TOUPPER ${PROJ_NAME} PROJ_NAME_UPPER) # short name upper case
22-
set (PROJECT_VERSION_RELEASE_TYPE "beta2" CACHE STRING
22+
set (PROJECT_VERSION_RELEASE_TYPE "RC1" CACHE STRING
2323
"Build type, for example: dev, beta2, RC1 (empty string for normal release)")
2424
set (${PROJECT_NAME}_VERSION_RELEASE_TYPE ${PROJECT_VERSION_RELEASE_TYPE})
2525
set (PROJECT_AUTHORS "Contributors to the OpenImageIO project")

0 commit comments

Comments
 (0)