Bump version to v0.10.1

This commit is contained in:
LecygneNoir 2020-09-16 07:48:38 +02:00
parent 320c3b1a0b
commit 28a7541fa8
3 changed files with 9 additions and 4 deletions

View file

@ -1,13 +1,18 @@
# Changelog # Changelog
## v0.10.1
### Fix
- fix a bug introduced with v0.10.0 that broke thumbnail on youtube upload.
## v0.10.0 ## v0.10.0
## Features ### Features
- Add the possibility to specify strict checks option to never forgot parameters when uploading (see #36) - Add the possibility to specify strict checks option to never forgot parameters when uploading (see #36)
- Improve logging system, add options for batch upload and print url-only in the stdout (see #29) - Improve logging system, add options for batch upload and print url-only in the stdout (see #29)
- --debug option is now deprecated in favor of --log=debug - --debug option is now deprecated in favor of --log=debug
## Fixes ### Fixes
- Workaround against the Youtube API breakdown while adding video in playlist. See #47 for details. Should be removed once Google fix their bugs. - Workaround against the Youtube API breakdown while adding video in playlist. See #47 for details. Should be removed once Google fix their bugs.

View file

@ -130,7 +130,7 @@ except ImportError:
'see https://github.com/ahupp/python-magic\n') 'see https://github.com/ahupp/python-magic\n')
exit(1) exit(1)
VERSION = "prismedia v0.10.0" VERSION = "prismedia v0.10.1"
VALID_PRIVACY_STATUSES = ('public', 'private', 'unlisted') VALID_PRIVACY_STATUSES = ('public', 'private', 'unlisted')
VALID_CATEGORIES = ( VALID_CATEGORIES = (

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "prismedia" name = "prismedia"
version = "0.10.0" version = "0.10.1"
description = "scripting your way to upload videos on peertube and youtube" description = "scripting your way to upload videos on peertube and youtube"
authors = [ authors = [
"LecygneNoir <git@lecygnenoir.info>", "LecygneNoir <git@lecygnenoir.info>",