Skip to content

Commit

Permalink
v0.21.0 [publish]
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Piskun <[email protected]>
  • Loading branch information
bigcat88 committed Nov 29, 2024
1 parent 4ac4cf3 commit 0ffb681
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-wheels-pi_heif.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ jobs:
cd .. && python3 -m pytest pillow_heif
macos-wheels:
name: macOS • 12 • ${{ matrix.python-version }}
runs-on: macos-12
name: macOS • 13 • ${{ matrix.python-version }}
runs-on: macos-13
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
macos-projects-together:
name: macOS • Together • ${{ matrix.python-version }}
runs-on: macos-12
runs-on: macos-13
strategy:
matrix:
python-version: ["pypy-3.9", "3.9"]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ jobs:
run: cd .. && python3 -m pytest pillow_heif

macos-wheels:
name: macOS • 12 • ${{ matrix.python-version }}
runs-on: macos-12
name: macOS • 13 • ${{ matrix.python-version }}
runs-on: macos-13
strategy:
matrix:
python-version: ["pypy-3.9", "pypy-3.10", "3.9", "3.10", "3.11", "3.12", "3.13"]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wheels-pi_heif.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:

wheels_macos:
name: macosx • x86_64
runs-on: macos-12
runs-on: macos-13

steps:
- uses: actions/checkout@v4
Expand All @@ -124,7 +124,7 @@ jobs:
env:
CIBW_ARCHS: "x86_64"
CIBW_ENVIRONMENT_MACOS: PH_LIGHT_ACTION=1 TEST_DECODE_THREADS=0
MACOSX_DEPLOYMENT_TARGET: "12.0"
MACOSX_DEPLOYMENT_TARGET: "13.0"

- name: Check built wheels
run: |
Expand Down Expand Up @@ -266,7 +266,7 @@ jobs:

sdist:
name: Source distribution
runs-on: macos-12
runs-on: macos-13

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wheels-pillow_heif.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:

wheels_macos:
name: macosx • x86_64
runs-on: macos-12
runs-on: macos-13

steps:
- uses: actions/checkout@v4
Expand All @@ -111,7 +111,7 @@ jobs:
env:
CIBW_ARCHS: "x86_64"
CIBW_ENVIRONMENT_MACOS: PH_FULL_ACTION=1 TEST_DECODE_THREADS=0
MACOSX_DEPLOYMENT_TARGET: "12.0"
MACOSX_DEPLOYMENT_TARGET: "13.0"

- name: Check built wheels
run: |
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:

sdist:
name: Source distribution
runs-on: macos-12
runs-on: macos-13

steps:
- uses: actions/checkout@v4
Expand Down
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
All notable changes to this project will be documented in this file.

## [0.21.0 - 2024-1x-xx]
## [0.21.0 - 2024-11-29]

### Added

- Allow specifying encoder parameters for non-primary images in image sequence. #313

### Changed

- libheif updated from `1.18.2` to `1.19.3` version.
- Libheif updated from `1.18.2` to `1.19.5` version. #312
- For macOS(`x86_64`), the minimum supported version for binary wheels has been raised from `12` to `13`.

### Fixed

- Error `argument '-Ofast' is deprecated` when building from source. #305

## [0.20.0 - 2024-10-19]

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

### Changed

- libheif updated from `1.18.1` to `1.18.2` version. #278
- Libheif updated from `1.18.1` to `1.18.2` version. #278
- Dropped `Python 3.8` support. #293

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion pillow_heif/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version of pillow_heif/pi_heif."""

__version__ = "0.21.0.dev0"
__version__ = "0.21.0"

0 comments on commit 0ffb681

Please sign in to comment.