From 0ec16ecedb7c0a628ceb8d90b693f45777c4e133 Mon Sep 17 00:00:00 2001 From: ThibaultBee <37510686+ThibaultBee@users.noreply.github.com> Date: Wed, 2 Nov 2022 17:24:48 +0100 Subject: [PATCH] chore(version): bump to 1.0.4 --- ApiVideoPlayer.podspec | 2 +- CHANGELOG.md | 3 +++ README.md | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ApiVideoPlayer.podspec b/ApiVideoPlayer.podspec index a285a001..367ee628 100644 --- a/ApiVideoPlayer.podspec +++ b/ApiVideoPlayer.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'ApiVideoPlayer' - s.version = '1.0.3' + s.version = '1.0.4' s.summary = 'The official Swift player for api.video' s.homepage = 'https://github.com/apivideo/api.video-swift-player' diff --git a/CHANGELOG.md b/CHANGELOG.md index 68f23365..28efc64e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog All changes to this project will be documented in this file. +## [1.0.4] - 2022-11-03 +- Add an API to automatically play the video after loading. See `ApiVideoPlayerController`'s `autoplay` field. + ## [1.0.3] - 2022-10-27 - Add an API to change the video id on the fly. Check out for `videoOptions`. - Add an API to get the video size in the controller diff --git a/README.md b/README.md index b5d48874..9ea1c982 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ In the Project Navigator select your own project. Then select the project in the Or add this in your Package.swift ``` dependencies: [ - .package(url: "https://github.com/apivideo/api.video-swift-player.git", from: "1.0.3"), + .package(url: "https://github.com/apivideo/api.video-swift-player.git", from: "1.0.4"), ], ```