diff --git a/ApiVideoLiveStream.podspec b/ApiVideoLiveStream.podspec index 45a5f15..5f848e9 100644 --- a/ApiVideoLiveStream.podspec +++ b/ApiVideoLiveStream.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |spec| spec.name = "ApiVideoLiveStream" - spec.version = "1.3.6" + spec.version = "1.4.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 bcb8a75..d5d0aee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog All changes to this project will be documented in this file. +## [1.4.0] - 2024-02-09 +- Improve the way Resolution are handled to avoid misusage. + ## [1.3.6] - 2024-02-08 - Improve RTMP error handling - Avoid disptaching `connect` because it is slower diff --git a/README.md b/README.md index ddce3b5..99e3fd2 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ https://github.com/api.video-swift-live-stream Or add this in your Package.swift ``` dependencies: [ - .package(url: "https://github.com/api.video-swift-live-stream.git", from: "1.3.6"), + .package(url: "https://github.com/api.video-swift-live-stream.git", from: "1.4.0"), ], ``` @@ -56,14 +56,14 @@ Or add this in your Package.swift 1. Add the following entry to your Podfile: ```swift -pod 'ApiVideoLiveStream', '1.3.6' +pod 'ApiVideoLiveStream', '1.4.0' ``` 2. Then run `pod install` 3. Don’t forget to import `ApiVideoLiveStream` in every file you’d like to use api.video live stream library #### Carthage ``` -github "apivideo/ApiVideoLiveStream.swift" ~> 1.3.6 +github "apivideo/ApiVideoLiveStream.swift" ~> 1.4.0 ``` ### Permissions