Skip to content

Commit

Permalink
[Calling][Release] 1.6.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
iaulakh committed Dec 21, 2023
1 parent 31f43f3 commit 8edfda7
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 17 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Pod::Spec.new do |spec|
spec.name = "AzureCommunicationUICalling"
spec.version = "1.6.0-alpha.0"
spec.version = "1.6.0-beta.1"
spec.summary = "UI Library to quickly integrate Azure Communication Calling Services experiences into your applications."
spec.homepage = "https://github.com/Azure/communication-ui-library-ios"
spec.license = { :type => 'MIT' }
spec.author = 'Microsoft'
spec.source = { :git => 'https://github.com/Azure/communication-ui-library-ios.git', :tag => 'AzureCommunicationUICalling_1.6.0-alpha.0' }
spec.source = { :git => 'https://github.com/Azure/communication-ui-library-ios.git', :tag => 'AzureCommunicationUICalling_1.6.0-beta.1' }
spec.module_name = 'AzureCommunicationUICalling'
spec.swift_version = '5.8'

Expand All @@ -16,7 +16,7 @@ Pod::Spec.new do |spec|
spec.pod_target_xcconfig = { "ENABLE_BITCODE": "NO"}
spec.info_plist = {'UILibrarySemVersion' => "#{spec.version}"}

spec.dependency 'AzureCommunicationCalling', '2.6.1'
spec.dependency 'AzureCommunicationCalling', '2.8.0-beta.2'
spec.dependency 'AzureCore', '1.0.0-beta.15'
spec.dependency 'MicrosoftFluentUI/Avatar_ios', '0.10.0'
spec.dependency 'MicrosoftFluentUI/BottomSheet_ios', '0.10.0'
Expand Down
20 changes: 8 additions & 12 deletions AzureCommunicationUI/sdk/AzureCommunicationUICalling/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
# Azure Communication UI Calling Release History

## 1.6.0-beta.0 (2023-*)
## 1.6.0-beta.1 (2023-12-21)
### Features
- CallKit integration for outgoing call
- Introduce Call Diagnostic banners to show [user facing diagnostics](https://learn.microsoft.com/en-us/azure/communication-services/concepts/voice-video-calling/user-facing-diagnostics?pivots=platform-ios) that could indicate due to some underlying issue a user might have a poor experience.
- ACS 1 to N Calling Support

### Bug Fixes
- Hide lobby users in GridView and Participant List

## 1.5.0-beta.1 (2023-09-08)
### New Features
- Introducing Picture in Picture which allows video call to continue when navigating away from calling screen.
- CallKit integration
- Teams meeting lobby admit
- ACS 1 to 1 Calling Support with push notification support

## 1.4.0 (2023-08-30)
## 1.5.0 (2023-12-04)

### Features
Expand All @@ -22,6 +14,10 @@
### Bug Fixes
- Hide lobby users in GridView and Participant List

## 1.5.0-beta.1 (2023-09-08)
### New Features
- Introducing Picture in Picture which allows video call to continue when navigating away from calling screen.

## 1.4.0 (2023-08-30)
### Features
- Use Dominant Speakers feature to determine which remove participants to display on the grid when number of participants more then 6.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>UILibrarySemVersion</key>
<string>1.6.0-alpha.0</string>
<string>1.6.0-beta.1</string>
</dict>
</plist>
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import AzureCommunicationCommon

class DiagnosticConfigTests: XCTestCase {

let expectedCompositeTag: String = "aci110/1.6.0-alpha.0"
let expectedCompositeTag: String = "aci110/1.6.0-beta.1"
func test_init_when_init_then_returnExpectedTags() {
let sut = makeSUT()
guard let tag = sut.tags.first else {
Expand Down

0 comments on commit 8edfda7

Please sign in to comment.