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

Commit 2986045

Browse files
committed
minor correction version bump -> v0.1.1
1 parent 378c82f commit 2986045

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
55

6-
## [Unreleased]
6+
## [0.1.1] 2022-02-28
7+
8+
### Added
9+
10+
- Added `pluggy` dependency.
11+
12+
## [0.1.0] 2022-02-28
713

814
- First release.
915

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ the full capability of `FFmpeg <https://ffmpeg.org>`__ to read, write, and manip
1919
data to Python. FFmpeg is an open-source cross-platform multimedia framework, which can handle
2020
most of the multimedia formats available today.
2121

22-
One caveat of FFmpeg is that there is no formal program installer for Windows and MacOS (although
22+
One caveat of FFmpeg is that there is no official program installer for Windows and MacOS (although
2323
`homebrew` could be used for the latter). `ffmpegio-plugin-downloader` adds a capability to download
24-
the latest release build of FFmpeg and use it in `ffmpegio` without any user intervention. This
25-
mechanism is supported by `ffmpeg-downloader <https://github.com/python-ffmpegio/python-ffmpeg-downloader>`__
26-
package. Downloading of the release build must be performed manually from the terminal screen,
24+
the latest release build of FFmpeg and enables the `ffmpegio` package to detect the paths of `ffmpeg`
25+
and `ffprobe` automatically. This mechanism is supported by `ffmpeg-downloader <https://github.com/python-ffmpegio/python-ffmpeg-downloader>`__
26+
package. Downloading of the release build must be performed interactively from the terminal screen,
2727
outside of Python.
2828

2929
Use

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ package_dir=
3030
=src
3131
install_requires =
3232
ffmpeg-downloader
33+
pluggy
3334
python_requires = >=3.7,
3435
packages=ffmpegio_plugin_downloader
3536

src/ffmpegio_plugin_downloader/__init__.py

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

77
hookimpl = HookimplMarker("ffmpegio")
88

9-
__version__ = "0.1.0"
9+
__version__ = "0.1.1"
1010

1111
__all__ = ["finder"]
1212

0 commit comments

Comments
 (0)