Skip to content

Commit 0ffb681

Browse files
committed
v0.21.0 [publish]
Signed-off-by: Alexander Piskun <[email protected]>
1 parent 4ac4cf3 commit 0ffb681

File tree

6 files changed

+24
-15
lines changed

6 files changed

+24
-15
lines changed

.github/workflows/test-wheels-pi_heif.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ jobs:
100100
cd .. && python3 -m pytest pillow_heif
101101
102102
macos-wheels:
103-
name: macOS • 12 • ${{ matrix.python-version }}
104-
runs-on: macos-12
103+
name: macOS • 13 • ${{ matrix.python-version }}
104+
runs-on: macos-13
105105
strategy:
106106
fail-fast: false
107107
matrix:
@@ -166,7 +166,7 @@ jobs:
166166
167167
macos-projects-together:
168168
name: macOS • Together • ${{ matrix.python-version }}
169-
runs-on: macos-12
169+
runs-on: macos-13
170170
strategy:
171171
matrix:
172172
python-version: ["pypy-3.9", "3.9"]

.github/workflows/test-wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ jobs:
9999
run: cd .. && python3 -m pytest pillow_heif
100100

101101
macos-wheels:
102-
name: macOS • 12 • ${{ matrix.python-version }}
103-
runs-on: macos-12
102+
name: macOS • 13 • ${{ matrix.python-version }}
103+
runs-on: macos-13
104104
strategy:
105105
matrix:
106106
python-version: ["pypy-3.9", "pypy-3.10", "3.9", "3.10", "3.11", "3.12", "3.13"]

.github/workflows/wheels-pi_heif.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108

109109
wheels_macos:
110110
name: macosx • x86_64
111-
runs-on: macos-12
111+
runs-on: macos-13
112112

113113
steps:
114114
- uses: actions/checkout@v4
@@ -124,7 +124,7 @@ jobs:
124124
env:
125125
CIBW_ARCHS: "x86_64"
126126
CIBW_ENVIRONMENT_MACOS: PH_LIGHT_ACTION=1 TEST_DECODE_THREADS=0
127-
MACOSX_DEPLOYMENT_TARGET: "12.0"
127+
MACOSX_DEPLOYMENT_TARGET: "13.0"
128128

129129
- name: Check built wheels
130130
run: |
@@ -266,7 +266,7 @@ jobs:
266266

267267
sdist:
268268
name: Source distribution
269-
runs-on: macos-12
269+
runs-on: macos-13
270270

271271
steps:
272272
- uses: actions/checkout@v4

.github/workflows/wheels-pillow_heif.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100

101101
wheels_macos:
102102
name: macosx • x86_64
103-
runs-on: macos-12
103+
runs-on: macos-13
104104

105105
steps:
106106
- uses: actions/checkout@v4
@@ -111,7 +111,7 @@ jobs:
111111
env:
112112
CIBW_ARCHS: "x86_64"
113113
CIBW_ENVIRONMENT_MACOS: PH_FULL_ACTION=1 TEST_DECODE_THREADS=0
114-
MACOSX_DEPLOYMENT_TARGET: "12.0"
114+
MACOSX_DEPLOYMENT_TARGET: "13.0"
115115

116116
- name: Check built wheels
117117
run: |
@@ -267,7 +267,7 @@ jobs:
267267

268268
sdist:
269269
name: Source distribution
270-
runs-on: macos-12
270+
runs-on: macos-13
271271

272272
steps:
273273
- uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
All notable changes to this project will be documented in this file.
22

3-
## [0.21.0 - 2024-1x-xx]
3+
## [0.21.0 - 2024-11-29]
4+
5+
### Added
6+
7+
- Allow specifying encoder parameters for non-primary images in image sequence. #313
48

59
### Changed
610

7-
- libheif updated from `1.18.2` to `1.19.3` version.
11+
- Libheif updated from `1.18.2` to `1.19.5` version. #312
12+
- For macOS(`x86_64`), the minimum supported version for binary wheels has been raised from `12` to `13`.
13+
14+
### Fixed
15+
16+
- Error `argument '-Ofast' is deprecated` when building from source. #305
817

918
## [0.20.0 - 2024-10-19]
1019

@@ -14,7 +23,7 @@ All notable changes to this project will be documented in this file.
1423

1524
### Changed
1625

17-
- libheif updated from `1.18.1` to `1.18.2` version. #278
26+
- Libheif updated from `1.18.1` to `1.18.2` version. #278
1827
- Dropped `Python 3.8` support. #293
1928

2029
### Fixed

pillow_heif/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version of pillow_heif/pi_heif."""
22

3-
__version__ = "0.21.0.dev0"
3+
__version__ = "0.21.0"

0 commit comments

Comments
 (0)