Skip to content

Commit

Permalink
Release 6.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
hiteshjain29 committed Sep 23, 2021
1 parent 7290684 commit 268a058
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 111 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 6.8.5
### Fix
- screenshot annotation issue for flutter-ios
- show active campaigns only

### Update
- build with Xcode 13.0
- support accessbility larger texts for campaign banner cta buttons
## 6.8.4
### Fix
- Navigation bar for ios15
Expand Down
24 changes: 0 additions & 24 deletions Package.swift

This file was deleted.

6 changes: 3 additions & 3 deletions Readme.MD
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ use_frameworks!

target 'YourProjectTarget' do

pod 'Usabilla', '~> 6.8.4'
pod 'Usabilla', '~> 6.8.5'

End
```
The current pod is build for Xcode 12.4 and now uses xcframework.
The current pod is build for Xcode 13.0 and now uses xcframework.

For older Xcode version, use:

Expand All @@ -114,7 +114,7 @@ And add this line to your `Cartfile`:
```yaml
binary "https://raw.githubusercontent.com/usabilla/usabilla-u4a-ios-swift-sdk/master/Usabilla.json"
```
The current Carthage release is build for Xcode 12.4.
The current Carthage release is build for Xcode 13.0.

For older Xcode version, use:

Expand Down
61 changes: 0 additions & 61 deletions SwiftPackageManager.MD

This file was deleted.

21 changes: 1 addition & 20 deletions Usabilla.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,3 @@
{
"6.8.4": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.8.4/UsabillaCarthage.zip",
"6.8.3": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.8.3/UsabillaCarthage.zip",
"6.8.2": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.8.2/UsabillaCarthage.zip",
"6.8.1": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.8.1/UsabillaCarthage.zip",
"6.8.0": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.8.0/UsabillaCarthage.zip",
"6.7.1": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.7.1/UsabillaCarthage.zip",
"6.7.0": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.7.0/UsabillaCarthage.zip",
"6.6.1": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.6.1/Carthage.framework.zip",
"6.6.0": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.6.0/Carthage.framework.zip",
"6.5.0": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.5.0/Carthage.framework.zip",
"6.4.7": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.4.7/Carthage.framework.zip",
"6.4.6": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.4.6/Carthage.framework.zip",
"6.4.5": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.4.5/Carthage.framework.zip",
"6.4.4": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.4.4/Carthage.framework.zip",
"6.4.3": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.4.3/Carthage.framework.zip",
"6.4.2": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.4.2/Carthage.framework.zip",
"6.4.1": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.4.1/Carthage.framework.zip",
"6.4.0": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.4.0/Carthage.framework.zip",
"6.3.0": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.3.0/Carthage.framework.zip",
"6.2.0": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.2.0/Carthage.framework.zip"
"6.8.5": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.8.5-Xcode-12.4/UsabillaCarthage.zip"
}
6 changes: 3 additions & 3 deletions Usabilla.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "6.8.4"
version = "6.8.5-Xcode-12.4"

Pod::Spec.new do |s|

Expand All @@ -10,6 +10,6 @@ Pod::Spec.new do |s|
s.license = "Apache License, Version 2.0"
s.author = { "Team SDK" => "sdk@usabilla.com" }
s.platform = :ios, "9.0"
s.source = { :http => "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v#{s.version}/UsabillaXCFramework.zip"}
s.ios.vendored_frameworks = 'Usabilla.xcframework'
s.source = { :http => "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v#{s.version}/UsabillaPods.zip"}
s.ios.vendored_frameworks = 'Usabilla.framework'
end

0 comments on commit 268a058

Please sign in to comment.