diff --git a/ApiVideoPlayer.podspec b/ApiVideoPlayer.podspec index 367ee628..97181d6d 100644 --- a/ApiVideoPlayer.podspec +++ b/ApiVideoPlayer.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'ApiVideoPlayer' - s.version = '1.0.4' + s.version = '1.0.5' 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 28efc64e..eebcf71a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog All changes to this project will be documented in this file. +## [1.0.5] - 2022-11-23 +- Add didReady event +- Use completionhandler in seek method to get the result of the seek, before doing any other action. ## [1.0.4] - 2022-11-03 - Add an API to automatically play the video after loading. See `ApiVideoPlayerController`'s `autoplay` field. diff --git a/README.md b/README.md index 9ea1c982..af78d0e9 100644 --- a/README.md +++ b/README.md @@ -40,12 +40,12 @@ 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.4"), + .package(url: "https://github.com/apivideo/api.video-swift-player.git", from: "1.0.5"), ], ``` ### Cocoapods -Add `pod 'ApiVideoPlayer', '1.0.3'` in your `Podfile` +Add `pod 'ApiVideoPlayer', '1.0.5'` in your `Podfile` Run `pod install`