aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog.md8
-rw-r--r--yt_dlp/version.py6
2 files changed, 11 insertions, 3 deletions
diff --git a/Changelog.md b/Changelog.md
index 6afab2835..6d3033efc 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -4,6 +4,14 @@
4# To create a release, dispatch the https://github.com/yt-dlp/yt-dlp/actions/workflows/release.yml workflow on master 4# To create a release, dispatch the https://github.com/yt-dlp/yt-dlp/actions/workflows/release.yml workflow on master
5--> 5-->
6 6
7### 2024.07.09
8
9#### Core changes
10- [Do not alter default format selection when simulated](https://github.com/yt-dlp/yt-dlp/commit/0b570f2a90ce2363ba06089217514d644e7be2e0) ([#9862](https://github.com/yt-dlp/yt-dlp/issues/9862)) by [seproDev](https://github.com/seproDev)
11
12#### Extractor changes
13- **youtube**: [Remove broken `n` function extraction fallback](https://github.com/yt-dlp/yt-dlp/commit/7ead7332af69422cee931aec3faa277288e9e212) ([#10396](https://github.com/yt-dlp/yt-dlp/issues/10396)) by [pukkandan](https://github.com/pukkandan), [seproDev](https://github.com/seproDev)
14
7### 2024.07.08 15### 2024.07.08
8 16
9#### Core changes 17#### Core changes
diff --git a/yt_dlp/version.py b/yt_dlp/version.py
index ffccd7c0f..31de564c5 100644
--- a/yt_dlp/version.py
+++ b/yt_dlp/version.py
@@ -1,8 +1,8 @@
1# Autogenerated by devscripts/update-version.py 1# Autogenerated by devscripts/update-version.py
2 2
3__version__ = '2024.07.08' 3__version__ = '2024.07.09'
4 4
5RELEASE_GIT_HEAD = '4b50b292cc98534fb8c7cdf0ae5cb85862f7ebfc' 5RELEASE_GIT_HEAD = '7ead7332af69422cee931aec3faa277288e9e212'
6 6
7VARIANT = None 7VARIANT = None
8 8
@@ -12,4 +12,4 @@ CHANNEL = 'stable'
12 12
13ORIGIN = 'yt-dlp/yt-dlp' 13ORIGIN = 'yt-dlp/yt-dlp'
14 14
15_pkg_version = '2024.07.08' 15_pkg_version = '2024.07.09'