Browse Source

Bump version to v0.10.1

master
LecygneNoir 3 years ago
parent
commit
28a7541fa8
3 changed files with 9 additions and 4 deletions
  1. +7
    -2
      CHANGELOG.md
  2. +1
    -1
      prismedia/upload.py
  3. +1
    -1
      pyproject.toml

+ 7
- 2
CHANGELOG.md View File

@ -1,13 +1,18 @@
# Changelog
## v0.10.1
### Fix
- fix a bug introduced with v0.10.0 that broke thumbnail on youtube upload.
## v0.10.0
## Features
### Features
- 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)
- --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.

+ 1
- 1
prismedia/upload.py View File

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

+ 1
- 1
pyproject.toml View File

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

Loading…
Cancel
Save