Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit 56f3c1f

Browse files
committed
bump to v0.9.0
1 parent 75d4a7b commit 56f3c1f

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

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

66
## [Unreleased]
77

8+
## [0.9.0] - 2023-12-08
9+
10+
### Changed
11+
12+
- Matching the `ffmpegio-core` version bump
13+
814
## [0.8.6] - 2023-11-29
915

1016
### Changed
@@ -103,7 +109,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
103109
- First release.
104110
- A plugin to convert raw media I/O data of `ffmpegio` to use `numpy.ndarray` objects.
105111

106-
[Unreleased]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.8.6...HEAD
112+
[Unreleased]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.9.0...HEAD
113+
[v0.9.0]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.8.6...0.9.0
107114
[v0.8.6]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.8.5...0.8.6
108115
[v0.8.5]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.8.4...0.8.5
109116
[v0.8.4]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.8.3...0.8.4

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ classifiers = [
2929

3030
dynamic = ["version"]
3131
requires-python = ">=3.8"
32-
dependencies = ["ffmpegio-core >= 0.8.6", "numpy >= 1.20"]
32+
dependencies = ["ffmpegio-core >= 0.9.0", "numpy >= 1.20"]
3333

3434
[project.urls]
3535
Home = "https://python-ffmpegio.github.io/python-ffmpegio"

src/ffmpegio_plugin_numpy/__init__.py

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

99
hookimpl = HookimplMarker("ffmpegio")
1010

11-
__version__ = "0.8.6"
11+
__version__ = "0.9.0"
1212
# ffmpegio-core version to match current ffmpeg-core version
1313

1414
__all__ = [
@@ -107,6 +107,7 @@ def bytes_to_video(
107107
except:
108108
return None
109109

110+
110111
@hookimpl
111112
def bytes_to_audio(b: bytes, dtype: str, shape: Tuple[int], squeeze: bool) -> ArrayLike:
112113
"""convert bytes to rawaudio NumPy array
@@ -128,4 +129,3 @@ def bytes_to_audio(b: bytes, dtype: str, shape: Tuple[int], squeeze: bool) -> Ar
128129
return x.squeeze() if squeeze else x
129130
except:
130131
return None
131-

0 commit comments

Comments
 (0)