From 0e34c1d56802f562c47441c1bab22b9764221a42 Mon Sep 17 00:00:00 2001 From: ThibaultBee <37510686+ThibaultBee@users.noreply.github.com> Date: Wed, 11 Jan 2023 10:28:25 +0100 Subject: [PATCH] chore(version): bump to 1.3.2 --- ApiVideoLiveStream.podspec | 2 +- CHANGELOG.md | 4 ++++ README.md | 6 +++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ApiVideoLiveStream.podspec b/ApiVideoLiveStream.podspec index cdfe630..5229362 100644 --- a/ApiVideoLiveStream.podspec +++ b/ApiVideoLiveStream.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |spec| spec.name = "ApiVideoLiveStream" - spec.version = "1.3.1" + spec.version = "1.3.2" 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 815f371..340aad9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All changes to this project will be documented in this file. +## [1.3.2] - 2023-01-11 +- Fix `lastCamera` when camera is set with `cameraPosition` +- Improve `startStreaming` errors + ## [1.3.1] - 2023-01-09 - Reduce startup time by fixing synchronization issues - Fix `isMuted` value. The property was inverted diff --git a/README.md b/README.md index a3ad0d5..8633726 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ https://github.com/api.video-ios-live-stream Or add this in your Package.swift ``` dependencies: [ - .package(url: "https://github.com/api.video-ios-live-stream.git", from: "1.3.1"), + .package(url: "https://github.com/api.video-ios-live-stream.git", from: "1.3.2"), ], ``` @@ -42,14 +42,14 @@ Or add this in your Package.swift 1. Add the following entry to your Podfile: ```swift -pod 'ApiVideoLiveStream', '1.3.1' +pod 'ApiVideoLiveStream', '1.3.2' ``` 3. Then run `pod install` 4. 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.1 +github "apivideo/ApiVideoLiveStream.swift" ~> 1.3.2 ``` ## Permissions