Skip to content

Commit

Permalink
Release version 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Team Mobile Schorsch committed Jul 13, 2022
1 parent 09dcd35 commit bf0d801
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Documentation/source/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ Once you have your Swift package set up, adding `GiniCaptureSDK` as a dependency

```swift
dependencies: [
.package(url: "https://github.com/gini/capture-sdk-ios.git", .exact("1.8.0"))
.package(url: "https://github.com/gini/capture-sdk-ios.git", .exact("1.9.0"))
]
```

In case that you want to use the certificate pinning in the library, add `GiniCaptureSDKPinning`:
```swift
dependencies: [
.package(url: "https://github.com/gini/capture-sdk-pinning-ios.git", .exact("1.8.0"))
.package(url: "https://github.com/gini/capture-sdk-pinning-ios.git", .exact("1.9.0"))
]
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

import UIKit

final class GiniBarButtonItem: UIBarButtonItem {
public final class GiniBarButtonItem: UIBarButtonItem {

init(image: UIImage?, title: String?, style: UIBarButtonItem.Style, target: AnyObject?, action: Selector) {
public init(image: UIImage?, title: String?, style: UIBarButtonItem.Style, target: AnyObject?, action: Selector) {
super.init()

let button = UIButton(type: .system)
Expand Down
2 changes: 1 addition & 1 deletion Sources/GiniCaptureSDK/GiniCaptureSDKVersion.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
// Created by Nadya Karaban on 29.10.21.
//

public let GiniCaptureSDKVersion = "1.8.0"
public let GiniCaptureSDKVersion = "1.9.0"

0 comments on commit bf0d801

Please sign in to comment.