Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelprystinka committed Oct 10, 2024
1 parent 4c3f179 commit c2e042b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 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.11.0"
spec.version = "1.12.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.11.0' }
spec.source = { :git => 'https://github.com/Azure/communication-ui-library-ios.git', :tag => 'AzureCommunicationUICalling_1.12.0-beta.1' }
spec.module_name = 'AzureCommunicationUICalling'
spec.swift_version = '5.8'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Azure Communication UI Calling Release History

## 1.12.0-beta.1 (2024-10-10)

### Features
- Call screen header custom button
- Color theming support

## 1.11.0 (2024-09-25)

### Features
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

## Latest Release

- [1.11.0 release](https://github.com/Azure/communication-ui-library-ios/releases/tag/AzureCommunicationUICalling_1.11.0)
- [1.12.0-beta.1 release](https://github.com/Azure/communication-ui-library-ios/releases/tag/AzureCommunicationUICalling_1.12.0-beta.1)

## Getting Started

Expand All @@ -27,7 +27,7 @@ Get started with Azure Communication Services by using the UI Library to integra
CocoaPods is a dependency manager. To set up with CocoaPods visit their [Getting Started Guide](https://guides.cocoapods.org/using/getting-started.html). To integrate UI Mobile Library into your Xcode project using CocoaPods, specify it in your `Podfile`:

```ruby
pod 'AzureCommunicationUICalling', '1.11.0'
pod 'AzureCommunicationUICalling', '1.12.0-beta.1'
```

### Manual Installation
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.11.0</string>
<string>1.12.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.11.0"
let expectedCompositeTag: String = "aci110/1.12.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 c2e042b

Please sign in to comment.