Skip to content

Commit 2dc49fe

Browse files
committed
Merge branch 'hotfix/3.7.5'
2 parents d638d21 + 285d6bd commit 2dc49fe

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Example/Example/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.7.4</string>
18+
<string>3.7.5</string>
1919
<key>CFBundleURLTypes</key>
2020
<array>
2121
<dict>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The recommended way to install the Rover SDK is via [Cocoapods](http://cocoapods
1111
Add the Rover dependency to your Podfile.
1212

1313
```ruby
14-
pod 'Rover', '~> 3.7.4'
14+
pod 'Rover', '~> 3.7.5'
1515
```
1616

1717
### Carthage
@@ -21,7 +21,7 @@ CocoaPods is the simplest approach to installing the Rover SDK but you can also
2121
Add the following entry to your Cartfile:
2222

2323
```ruby
24-
github "RoverPlatform/rover-ios" == 3.7.4
24+
github "RoverPlatform/rover-ios" == 3.7.5
2525
```
2626

2727
## Initialization

Rover.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Rover"
3-
s.version = "3.7.4"
3+
s.version = "3.7.5"
44
s.summary = "iOS framework for the Rover platform"
55
s.homepage = "https://www.rover.io"
66
s.license = "Apache License, Version 2.0"

Sources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.7.4</string>
18+
<string>3.7.5</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

Sources/UI/ScreenViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,10 +214,10 @@ open class ScreenViewController: UICollectionViewController, UICollectionViewDat
214214
navigationItem.rightBarButtonItem = nil
215215
navigationItem.setHidesBackButton(false, animated: true)
216216
case .both:
217-
navigationItem.rightBarButtonItem = UIBarButtonItem.init(barButtonSystemItem: UIBarButtonItem.SystemItem.done, target: self, action: #selector(close))
217+
navigationItem.rightBarButtonItem = UIBarButtonItem(title: NSLocalizedString("Close", comment: "Rover Close"), style: .plain, target: self, action: #selector(close))
218218
navigationItem.setHidesBackButton(false, animated: true)
219219
case .close:
220-
navigationItem.rightBarButtonItem = UIBarButtonItem.init(barButtonSystemItem: UIBarButtonItem.SystemItem.done, target: self, action: #selector(close))
220+
navigationItem.rightBarButtonItem = UIBarButtonItem(title: NSLocalizedString("Close", comment: "Rover Close"), style: .plain, target: self, action: #selector(close))
221221
navigationItem.setHidesBackButton(true, animated: true)
222222
}
223223
}

0 commit comments

Comments
 (0)