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

Commit 75d4a7b

Browse files
committed
version bump v0.8.6
1 parent c5eb327 commit 75d4a7b

File tree

4 files changed

+20
-6
lines changed

4 files changed

+20
-6
lines changed

CHANGELOG.md

Lines changed: 17 additions & 2 deletions
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.8.6] - 2023-11-29
9+
10+
### Changed
11+
12+
- Matching the `ffmpegio-core` version bump
13+
814
## [0.8.5] - 2023-11-13
915

1016
### Changed
@@ -29,7 +35,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
2935

3036
- Matching the `ffmpegio-core` version bump
3137

32-
## [0.8.2] - 2023-03-18
38+
## [0.8.1] - 2023-03-18
3339

3440
### Fixed
3541

@@ -97,7 +103,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
97103
- First release.
98104
- A plugin to convert raw media I/O data of `ffmpegio` to use `numpy.ndarray` objects.
99105

100-
[Unreleased]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.5.0...HEAD
106+
[Unreleased]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.8.6...HEAD
107+
[v0.8.6]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.8.5...0.8.6
108+
[v0.8.5]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.8.4...0.8.5
109+
[v0.8.4]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.8.3...0.8.4
110+
[v0.8.3]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.8.2...0.8.3
111+
[v0.8.2]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.8.1...0.8.2
112+
[v0.8.1]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.7.0...0.8.1
113+
[v0.7.0]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.6.0...0.7.0
114+
[v0.6.0]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.5.1...0.6.0
115+
[v0.5.1]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.5.0...0.5.1
101116
[v0.5.0]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.4.1...v0.5.0
102117
[v0.3.3]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.3.1...v0.4.1
103118
[v0.3.1]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.3.0...v0.3.1

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.5", "numpy >= 1.20"]
32+
dependencies = ["ffmpegio-core >= 0.8.6", "numpy >= 1.20"]
3333

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

src/ffmpegio_plugin_numpy/__init__.py

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

99
hookimpl = HookimplMarker("ffmpegio")
1010

11-
__version__ = "0.8.5"
12-
# When updating version, make sure to update pyproject.toml dependencies field
11+
__version__ = "0.8.6"
1312
# ffmpegio-core version to match current ffmpeg-core version
1413

1514
__all__ = [

0 commit comments

Comments
 (0)