Skip to content

Commit d35c0ff

Browse files
committed
chore: release version 0.7.0
1 parent 26b91d4 commit d35c0ff

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 0.7.0
4+
5+
### Breaking Changes
6+
7+
* **(Config)** The `[extractors.enable]` section was renamed to `[extractors]`. The old name is still supported but deprecated. It is strongly recommended to update the config.
8+
* On \*nix (more specifically, non-Windows) systems the default location for managed backends and extractor plugins was changed from `$XDG_CONFIG_HOME/dl-plus` to `$XDG_DATA_HOME/dl-plus`. The old location is still supported but deprecated. It is strongly recommended to either move the data to the new location or set the `DL_PLUS_DATA_HOME`/`DL_PLUS_HOME` environment variable to keep the old location.
9+
10+
### Features
11+
12+
* Added support for Python 3.12.
13+
* **(Env)** Added two new environment variables: `DL_PLUS_CONFIG_HOME` and `DL_PLUS_DATA_HOME`. These variables have higher priority than `DL_PLUS_HOME`.
14+
`DL_PLUS_CONFIG_HOME` is a directory where the config file is stored. `DL_PLUS_DATA_HOME` is a directory where managed backends and extractor plugins are stored.
15+
* **(Env)** Added a new environment variable `DL_PLUS_BACKEND`, which has higher priority than the config setting, but lower than the command line argument. The variable can be used, for example, to temporarily override the backend setting, especially if it is not possible/hard to do via the command line argument, e.g., `DL_PLUS_BACKEND=youtube-dl mpv https://...` can be used instead of `mpv --ytdl-raw-options=backend=youtube-dl mpv https://...`.
16+
317
## 0.6.0
418

519
### Breaking Changes

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 un.def <[email protected]>
3+
Copyright (c) 2020–2024 Dmitry Meyer <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ build-backend = 'setuptools.build_meta'
66
name = 'dl-plus'
77
description = 'A youtube-dl extension with pluggable extractors'
88
readme = 'README.md'
9-
license = {file = 'LICENSE'}
9+
license = {text = 'MIT'}
1010
authors = [
11-
{name = 'un.def', email = '[email protected]'},
11+
{name = 'Dmitry Meyer', email = '[email protected]'},
1212
]
1313
classifiers = [
1414
'Development Status :: 4 - Beta',

src/dl_plus/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
DL_PLUS_VERSION = '0.7.0.dev0'
1+
DL_PLUS_VERSION = '0.7.0'
22
PLUGINS_PACKAGE = 'dl_plus.extractors'

0 commit comments

Comments
 (0)