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

Commit 9b2f643

Browse files
committed
version bump -> v0.3.1
1 parent 7f0f488 commit 9b2f643

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

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

66
## [Unreleased]
77

8-
## [1.0.0] - 2022-02-13
8+
## [0.3.1] - 2022-02-13
9+
10+
### Added
11+
12+
- Added `squeeze` argument to `bytes_to_video` and `bytes_to_audio` hooks
13+
## [0.3.0] - 2022-02-13
914

1015
### Added
1116

1217
- First release.
1318
- A plugin to convert raw media I/O data of `ffmpegio` to use `numpy.ndarray` objects.
1419

15-
[Unreleased]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v1.0.0...HEAD
16-
20+
[Unreleased]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.3.1...HEAD
21+
[v0.3.1]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.3.0...v0.3.1

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = ffmpegio
3-
version = 0.3.0
3+
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
@@ -30,7 +30,7 @@ classifiers =
3030
package_dir=
3131
=src
3232
install_requires =
33-
ffmpegio-core
33+
ffmpegio-core >= 0.3.1
3434
numpy >= 1.20
3535
python_requires = >=3.7,
3636
packages=ffmpegio_plugin_numpy

src/ffmpegio_plugin_numpy/__init__.py

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

99
hookimpl = HookimplMarker("ffmpegio")
1010

11+
__version__ = "0.3.1"
12+
1113
__all__ = [
1214
"video_info",
1315
"audio_info",

0 commit comments

Comments
 (0)