Skip to content

Commit 66f4cd8

Browse files
committed
bump to v0.11.1
1 parent 2137184 commit 66f4cd8

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
66

77
## [Unreleased]
88

9+
## [0.11.1] - 2025-05-17
10+
11+
### Fixed
12+
13+
- `audio.filter()` and `image.filter()`: fixed to process their `sp_kwargs` argument
14+
- numPy plugin: fixed to convert the array view to bytes (fixes `stdin` operations in Linux)
15+
- `probe`: fixed to accept any stringifiable object as url also cleaned up the url processing
16+
917
## [0.11.0] - 2024-12-22
1018

1119
### Changed
@@ -448,7 +456,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
448456
- Main functionality of `transcode`, `video`, `audio`, `image`, `SimpleStreams`, `probe`, and `caps` modules.
449457
- Preliminary implementations of `FilterGraph` and `FFmpegError` classes.
450458

451-
[unreleased]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.11.0...HEAD
459+
[unreleased]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.11.1...HEAD
460+
[0.11.1]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.11.0...v0.11.1
452461
[0.11.0]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.10.0...v0.11.0
453462
[0.10.0]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.9.1...v0.10.0
454463
[0.9.1]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.9.0...v0.9.1

src/ffmpegio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def __getattr__(name):
7373
"open", "ffmpegprocess", "FFmpegError", "FilterGraph", "FFConcat", "use"]
7474
# fmt:on
7575

76-
__version__ = "0.11.0"
76+
__version__ = "0.11.1"
7777

7878
ffmpeg_info = path.versions
7979
set_path = path.find

0 commit comments

Comments
 (0)