Skip to content

Commit 373803b

Browse files
committed
version bump to v0.3.0
1 parent 611b4ac commit 373803b

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

CHANGELOG.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
55

66
## [Unreleased]
77

8+
## [0.3.0] - 2023-12-07
9+
10+
### Added
11+
12+
- Support for aarch64
13+
- Qt QWizard subclass InstallFFmpegWizard
14+
- Run wizard with command `ffdl-gui`
15+
- Switched to using platformdirs package from appdirs
16+
17+
### Fixed
18+
19+
- uninstall command argument processing
20+
- uninstall clear env vars
21+
- linux clr_symlinks()
22+
- downloader no longer try to copy again to cache dir
23+
- [win32] error finding snapshot assets
24+
825
## [0.2.0] - 2022-11-19
926

1027
### Changed
@@ -40,7 +57,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
4057

4158
- First release via GitHub Action
4259

43-
[Unreleased]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.2.0...HEAD
60+
[Unreleased]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.3.0...HEAD
61+
[0.3.0]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.2.0...v0.3.0
4462
[0.2.0]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.1.4...v0.2.0
4563
[0.1.4]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.1.3...v0.1.4
4664
[0.1.3]: https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.1.2...v0.1.3

src/ffmpeg_downloader/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.2.0"
1+
__version__ = "0.3.0"
22

33
import os
44
from . import _backend as _

0 commit comments

Comments
 (0)