Skip to content

Commit 0c66dfa

Browse files
committed
update for v3.2.6
Signed-off-by: Peter Hillman <peterh@wetafx.co.nz>
1 parent e69bf4b commit 0c66dfa

File tree

6 files changed

+22
-11
lines changed

6 files changed

+22
-11
lines changed

.github/workflows/bazel_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
8585
build_and_test_macos:
8686
name: macOS 13 Bazel build <Apple Clang14>
87-
runs-on: macos-13
87+
runs-on: macos-15
8888

8989
steps:
9090
- uses: actions/checkout@v4.1.1
@@ -93,7 +93,7 @@ jobs:
9393
uses: actions/cache@v4.0.0
9494
with:
9595
path: "/home/runner/.cache/bazel"
96-
key: bazel-macos-13
96+
key: bazel-macos-15
9797

9898
- name: Build
9999
run: |

.github/workflows/python-wheels-publish-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
arch: x64
2828
- os: ubuntu-24.04-arm
2929
arch: arm64
30-
- os: macos-13
30+
- os: macos-15-intel
3131
arch: x64
3232
- os: macos-latest
3333
arch: arm64
@@ -108,10 +108,10 @@ jobs:
108108
name: wheels-ubuntu-24.04-arm-arm64
109109
path: dist
110110

111-
- name: Download macos-13-x64 artifacts
111+
- name: Download macos-15-intel-x64 artifacts
112112
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
113113
with:
114-
name: wheels-macos-13-x64
114+
name: wheels-macos-15-intel-x64
115115
path: dist
116116

117117
- name: Download macos-latest-arm64

.github/workflows/python-wheels-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
arch: x64
2424
- os: ubuntu-24.04-arm
2525
arch: arm64
26-
- os: macos-13
26+
- os: macos-15-intel
2727
arch: x64
2828
- os: macos-latest
2929
arch: arm64
@@ -101,10 +101,10 @@ jobs:
101101
name: wheels-ubuntu-24.04-arm-arm64
102102
path: dist
103103

104-
- name: Download macos-13-x64 artifacts
104+
- name: Download macos-15-intel-x64 artifacts
105105
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
106106
with:
107-
name: wheels-macos-13-x64
107+
name: wheels-macos-15-intel-x64
108108
path: dist
109109

110110
- name: Download macos-latest-arm64

.github/workflows/python-wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
arch: x64
4747
- os: ubuntu-24.04-arm
4848
arch: arm64
49-
- os: macos-13
49+
- os: macos-15-intel
5050
arch: x64
5151
- os: macos-latest
5252
arch: arm64
@@ -87,4 +87,4 @@ jobs:
8787
name: wheels-${{ matrix.os }}-${{ matrix.arch }}
8888
path: |
8989
./wheelhouse/*.whl
90-
./wheelhouse/*.tar.gz
90+
./wheelhouse/*.tar.gz

CHANGES.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
# OpenEXR Release Notes
55

6+
* [Version 3.2.6](#version-326-february-26-2026) February 26, 2026
67
* [Version 3.2.5](#version-325-november-4-2025) November 4, 2025
78
* [Version 3.2.4](#version-324-march-26-2024) March 26, 2024
89
* [Version 3.2.3](#version-323-march-6-2024) March 6, 2024
@@ -75,6 +76,16 @@
7576
* [Version 1.0.1](#version-101)
7677
* [Version 1.0](#version-10)
7778

79+
## Version 3.2.6 (February 26, 2026)
80+
81+
Patch release that prevents an integer overflow when using the
82+
CompositeDeepScanLine API to combine multiple deep parts.
83+
84+
### Merged Pull Requests:
85+
86+
* [2256](https://github.com/AcademySoftwareFoundation/pulls/2256)
87+
88+
7889
## Version 3.2.5 (November 4, 2025)
7990

8091
Patch release that addresses bugs in the python module's legacy API.

src/lib/OpenEXRCore/openexr_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010

1111
# define OPENEXR_VERSION_MAJOR 3
1212
# define OPENEXR_VERSION_MINOR 2
13-
# define OPENEXR_VERSION_PATCH 5
13+
# define OPENEXR_VERSION_PATCH 6
1414

1515
#endif

0 commit comments

Comments
 (0)