diff --git a/ApiVideoPlayer.podspec b/ApiVideoPlayer.podspec index 9196f58a..b2d4bc07 100644 --- a/ApiVideoPlayer.podspec +++ b/ApiVideoPlayer.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'ApiVideoPlayer' - s.version = '1.1.4' + s.version = '1.2.0' 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 fe02bad3..98b8393c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All changes to this project will be documented in this file. +## [1.2.0] - 2024-03-01 +- Add support for private live stream +- Add an API to set a custom `AVPlayerViewController` + ## [1.1.4] - 2023-10-09 - Fix analytics when currentTime < 0 - Examples: Add default videoId diff --git a/README.md b/README.md index 1f5e9ec0..4a6da765 100644 --- a/README.md +++ b/README.md @@ -66,13 +66,13 @@ Or add this in your Package.swift ``` dependencies: [ - .package(url: "https://github.com/apivideo/api.video-swift-player.git", from: "1.1.4"), + .package(url: "https://github.com/apivideo/api.video-swift-player.git", from: "1.2.0"), ], ``` #### Cocoapods -Add `pod 'ApiVideoPlayer', '1.1.4'` in your `Podfile` +Add `pod 'ApiVideoPlayer', '1.2.0'` in your `Podfile` Run `pod install` @@ -267,10 +267,6 @@ A demo application demonstrates how to use player. See [`/example`](https://github.com/apivideo/api.video-swift-player/tree/main/Examples) folder. -On the first run, you will have to set your video Id: - -1. Replace "YOUR_VIDEO_ID" by your video Id - ## Documentation - [Player documentation](https://apivideo.github.io/api.video-swift-player/documentation/apivideoplayer/)