From cf7571c40235b3238ea6877f77fe7c248a2e1022 Mon Sep 17 00:00:00 2001 From: Shaka Bot <13107131+shaka-bot@users.noreply.github.com> Date: Mon, 11 Nov 2024 21:31:12 -0800 Subject: [PATCH] chore(main): release 1.1.0 (#209) --- .release-please-manifest.json | 2 +- CHANGELOG.md | 11 +++++++++++ binaries/streamer_binaries/__init__.py | 2 +- streamer/__init__.py | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b870c5e..5fdd883 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.2" + ".": "1.1.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 243cd8e..5c0c78e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [1.1.0](https://github.com/shaka-project/shaka-streamer/compare/v1.0.2...v1.1.0) (2024-11-12) + + +### Features + +* Add generate_iframe_playlist option ([#205](https://github.com/shaka-project/shaka-streamer/issues/205)) ([071396b](https://github.com/shaka-project/shaka-streamer/commit/071396b4f27c85716675e3653e435635c43c2c9e)) +* Add support for forced subtitles ([#208](https://github.com/shaka-project/shaka-streamer/issues/208)) ([96ae67a](https://github.com/shaka-project/shaka-streamer/commit/96ae67a1d657c0cd4d8d1991742cf5f7dd553d29)) +* Recover from upload failures ([#211](https://github.com/shaka-project/shaka-streamer/issues/211)) ([278d775](https://github.com/shaka-project/shaka-streamer/commit/278d775272d56ec4eccc437de76c002aac2b8317)), closes [#195](https://github.com/shaka-project/shaka-streamer/issues/195) +* Restore HTTP output (not cloud storage) ([#212](https://github.com/shaka-project/shaka-streamer/issues/212)) ([1a4c7c2](https://github.com/shaka-project/shaka-streamer/commit/1a4c7c21ba772378e364030ac8f3a6cb62849cbf)), closes [#210](https://github.com/shaka-project/shaka-streamer/issues/210) +* Use by default VP9 with mp4 ([#206](https://github.com/shaka-project/shaka-streamer/issues/206)) ([2ac830b](https://github.com/shaka-project/shaka-streamer/commit/2ac830b9caaf6e64f55824edfeb03b445b6e3b3c)) + ## [1.0.2](https://github.com/shaka-project/shaka-streamer/compare/v1.0.1...v1.0.2) (2024-11-11) diff --git a/binaries/streamer_binaries/__init__.py b/binaries/streamer_binaries/__init__.py index 19b81fb..73c0195 100644 --- a/binaries/streamer_binaries/__init__.py +++ b/binaries/streamer_binaries/__init__.py @@ -1,7 +1,7 @@ import os import platform -__version__ = '1.0.2' # x-release-please-version +__version__ = '1.1.0' # x-release-please-version # Get the directory path where this __init__.py file resides. diff --git a/streamer/__init__.py b/streamer/__init__.py index af01515..4c61890 100644 --- a/streamer/__init__.py +++ b/streamer/__init__.py @@ -1,3 +1,3 @@ -__version__ = '1.0.2' # x-release-please-version +__version__ = '1.1.0' # x-release-please-version from . import controller_node