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

Commit e9d4eed

Browse files
committed
version bump -> v0.4.0 (matching)
1 parent 45d183a commit e9d4eed

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 9 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.4.0] - 2022-02-22
9+
10+
### Changed
11+
12+
- Matching the `ffmpegio` version bump
13+
814
## [0.3.3] - 2022-02-18
915

1016
### Changed
@@ -16,13 +22,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
1622
### Added
1723

1824
- Added `squeeze` argument to `bytes_to_video` and `bytes_to_audio` hooks
25+
1926
## [0.3.0] - 2022-02-13
2027

2128
### Added
2229

2330
- First release.
2431
- A plugin to convert raw media I/O data of `ffmpegio` to use `numpy.ndarray` objects.
2532

26-
[Unreleased]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.3.3...HEAD
27-
[v0.3.3]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.3.1...v0.3.3
33+
[Unreleased]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.4.0...HEAD
34+
[v0.3.3]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.3.1...v0.4.0
2835
[v0.3.1]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.3.0...v0.3.1

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = attr: ffmpegio_plugin_numpy.__version__
44
description = Media I/O with FFmpeg and NumPy array
55
long_description_content_type = text/x-rst
66
long_description = file: README.rst
7-
keywords = multimedia
7+
keywords = multimedia, ffmpeg
88
license = GPL-2.0 License
99
url=https://python-ffmpegio.github.io/python-ffmpegio
1010
project_urls=

src/ffmpegio_plugin_numpy/__init__.py

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

99
hookimpl = HookimplMarker("ffmpegio")
1010

11-
__version__ = "0.3.3"
11+
__version__ = "0.4.0"
1212

1313
__all__ = [
1414
"video_info",

0 commit comments

Comments
 (0)