Skip to content

Commit

Permalink
🔖(minor) bump release to 0.8.0
Browse files Browse the repository at this point in the history
Added

- Add a parameter to the transcode function to specify the source file
  • Loading branch information
kernicPanel committed Sep 5, 2024
1 parent 1300936 commit 4fd4d61
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 15 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to

## [Unreleased]

## [0.8.0] - 2024-09-05

### Added

- Add a parameter to the transcode function to specify the source file
Expand Down Expand Up @@ -79,7 +81,8 @@ and this project adheres to
- add django_peertube_runner_connector app
- add basic quality tools + testing suite

[unreleased]: https://github.com/openfun/django-peertube-runner-connector/compare/v0.7.0...main
[unreleased]: https://github.com/openfun/django-peertube-runner-connector/compare/v0.8.0...main
[0.8.0]: https://github.com/openfun/django-peertube-runner-connector/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/openfun/django-peertube-runner-connector/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/openfun/django-peertube-runner-connector/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/openfun/django-peertube-runner-connector/compare/v0.4.0...v0.5.0
Expand Down
28 changes: 14 additions & 14 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = django_peertube_runner_connector
description = A django application to connect to a peertube runner and transcode videos
long_description = file: README.md, LICENSE
long_description_content_type = text/markdown
version = 0.7.0
version = 0.8.0
author = Open FUN (France Universite Numerique)
author_email = fun.dev@fun-mooc.fr
license = MIT
Expand Down Expand Up @@ -123,16 +123,16 @@ skip_empty = true
precision = 2

[isort]
combine_as_imports=1
default_section=THIRDPARTY
force_sort_within_sections=1
from_first=1
include_trailing_comma=1
indent=' '
known_django=django
known_first_party=django_peertube_runner_connector
line_length=88
lines_after_imports=2
multi_line_output=3
sections=FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
use_parentheses=1
combine_as_imports = 1
default_section = THIRDPARTY
force_sort_within_sections = 1
from_first = 1
include_trailing_comma = 1
indent = ' '
known_django = django
known_first_party = django_peertube_runner_connector
line_length = 88
lines_after_imports = 2
multi_line_output = 3
sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
use_parentheses = 1

0 comments on commit 4fd4d61

Please sign in to comment.