diff --git a/ApiVideoLiveStream.podspec b/ApiVideoLiveStream.podspec index a3f88b7..71c5734 100644 --- a/ApiVideoLiveStream.podspec +++ b/ApiVideoLiveStream.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |spec| spec.name = "ApiVideoLiveStream" - spec.version = "0.1.0" + spec.version = "0.2.0" spec.summary = "The api.video live stream framework allow easy integration of a live stream broadcast into your application." diff --git a/CHANGELOG.md b/CHANGELOG.md index 50a1e19..16c6b9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog All changes to this project will be documented in this file. +## [0.2.0] - 2022-04-13 +- Add default parameters for audio and video config +- Fix continous auto focus +- Call `onDisconnect` when connection is closed +- Rename `Resolution` to `Size` +- Few fixes on example + ## [0.1.0] - 2022-01-27 - Large refactor and clean - Add a sample application diff --git a/README.md b/README.md index afc9e1c..df2de3a 100644 --- a/README.md +++ b/README.md @@ -28,14 +28,14 @@ This module is an easy way to broadcast RTMP live stream to [api.video](https:// 1. Add the following entry to your Podfile: ```swift -pod 'ApiVideoLiveStream', '0.1.0' +pod 'ApiVideoLiveStream', '0.2.0' ``` 3. Then run `pod install` 4. Don’t forget to import `ApiVideoLiveStream` in every file you’d like to use api.video livestream library ### With Carthage ``` -github "apivideo/ApiVideoLiveStream.swift" ~> 0.1.0 +github "apivideo/ApiVideoLiveStream.swift" ~> 0.2.0 ``` ## Permissions