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..bcb096a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.1.0](https://github.com/shaka-project/shaka-streamer/compare/v1.0.2...v1.1.0) (2024-11-11) + + +### 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)) +* 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