Skip to content

Commit

Permalink
Merge pull request #139 from heremaps/ps/MSDKUI-2082
Browse files Browse the repository at this point in the history
MSDKUI-2082: Update version to 2.1.2
  • Loading branch information
PiotrSzmyt authored Sep 9, 2019
2 parents 37b8f5b + 3dfc8ca commit 3762fe4
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion Commons/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.1.1</string>
<string>2.1.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Guides/QuickStart.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ To run CocoaPods, please close Xcode and create a new "Podfile" in your project'
```ruby
target 'HelloMSDKUI' do
platform :ios, '10.0'
pod 'HEREMapsUI', '2.1.1'
pod 'HEREMapsUI', '2.1.2'
end
```

Expand Down
2 changes: 1 addition & 1 deletion Documentation/Guides_Examples/HelloMSDKUI/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
target 'HelloMSDKUI' do
platform :ios, '10.0'
pod 'HEREMapsUI', :path => '../../../' # Integrate dependencies based on the local podspec from this repo (always the latest).
# Alternatively, to integrate dependencies based on a released podspec use: pod 'HEREMapsUI', '2.1.1'
# Alternatively, to integrate dependencies based on a released podspec use: pod 'HEREMapsUI', '2.1.2'
end
6 changes: 3 additions & 3 deletions Documentation/Guides_Examples/HelloMSDKUI/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- HEREMaps (3.12.2)
- HEREMapsUI (2.1.1):
- HEREMapsUI (2.1.2):
- HEREMaps (= 3.12.2)

DEPENDENCIES:
Expand All @@ -16,8 +16,8 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
HEREMaps: 94aedb4134e14d806e34cc8688ec2db2584538ff
HEREMapsUI: 48a17c35a598f623f8cdab8b555492359f4fe90e
HEREMapsUI: 4d16a56eb55273bc7eef117e3f31b8a34f734af8

PODFILE CHECKSUM: 4bb28061398facbb754af285d6e9c6539dc17ba3
PODFILE CHECKSUM: 5fcbdc2ef81ab1fba3c9b36fa641f6d0d044fdba

COCOAPODS: 1.7.5
2 changes: 1 addition & 1 deletion Documentation/Guides_Examples/MSDKUIPrimer/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
target 'MSDKUIPrimer' do
platform :ios, '10.0'
pod 'HEREMapsUI', :path => '../../../' # Integrate dependencies based on the local podspec from this repo (always the latest).
# Alternatively, to integrate dependencies based on a released podspec use: pod 'HEREMapsUI', '2.1.1'
# Alternatively, to integrate dependencies based on a released podspec use: pod 'HEREMapsUI', '2.1.2'
end
6 changes: 3 additions & 3 deletions Documentation/Guides_Examples/MSDKUIPrimer/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- HEREMaps (3.12.2)
- HEREMapsUI (2.1.1):
- HEREMapsUI (2.1.2):
- HEREMaps (= 3.12.2)

DEPENDENCIES:
Expand All @@ -16,8 +16,8 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
HEREMaps: 94aedb4134e14d806e34cc8688ec2db2584538ff
HEREMapsUI: 48a17c35a598f623f8cdab8b555492359f4fe90e
HEREMapsUI: 4d16a56eb55273bc7eef117e3f31b8a34f734af8

PODFILE CHECKSUM: 494968e5c4ddc0a72e16ee343d15e0334bbcb35a
PODFILE CHECKSUM: 80ce21e74c6cabf736c02adaa2c068a1243bd977

COCOAPODS: 1.7.5
2 changes: 1 addition & 1 deletion HEREMapsUI.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'HEREMapsUI'
s.module_name = 'MSDKUI'
s.version = '2.1.1'
s.version = '2.1.2'
s.summary = 'HEREMapsUI (MSDKUI) provides ready-to-use UI components for the HERE Mobile SDK for iOS.'
s.description = 'HEREMapsUI (MSDKUI) aims to make life easier for the iOS developers using the HERE Mobile SDK for iOS. It provides ready-to-use UI components with strong customization support. Plus, it supports accessibility and localization.'
s.homepage = 'https://github.com/heremaps/msdkui-ios'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ final class AboutTableViewDataSourceTests: XCTestCase {
// First item
let firstItem = try require(dataSource?.item(at: IndexPath(row: 0, section: 0)))
XCTAssertLocalized(firstItem.title, key: "msdkui_app_app_version", "It has the correct title")
XCTAssertEqual(firstItem.description, "2.1.1", "It has the correct description")
XCTAssertEqual(firstItem.description, "2.1.2", "It has the correct description")

// Second item
let secondItem = try require(dataSource?.item(at: IndexPath(row: 1, section: 0)))
XCTAssertLocalized(secondItem.title, key: "msdkui_app_ui_kit_version", "It has the correct title")
XCTAssertEqual(secondItem.description, "2.1.1", "It has the correct description")
XCTAssertEqual(secondItem.description, "2.1.2", "It has the correct description")

// Third item
let thirdItem = try require(dataSource?.item(at: IndexPath(row: 2, section: 0)))
Expand Down Expand Up @@ -101,6 +101,6 @@ final class AboutTableViewDataSourceTests: XCTestCase {
let cell = dataSource?.tableView(try require(tableView), cellForRowAt: IndexPath(row: 1, section: 0)) as? AboutTableViewCell

XCTAssertLocalized(cell?.textLabel?.text, key: "msdkui_app_ui_kit_version", "It has the correct text")
XCTAssertEqual(cell?.detailTextLabel?.text, "2.1.1", "It has the correct detail text")
XCTAssertEqual(cell?.detailTextLabel?.text, "2.1.2", "It has the correct detail text")
}
}
2 changes: 1 addition & 1 deletion MSDKUI_Tests/VersionTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ final class VersionTests: XCTestCase {

/// Tests that the framework version is correctly retrieved.
func testFrameworkVersion() {
let expectedVersion = "2.1.1"
let expectedVersion = "2.1.2"

XCTAssertEqual(Version.getString(), expectedVersion, "Not the expected version!")
}
Expand Down
6 changes: 3 additions & 3 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PODS:
- EarlGrey (1.15.0)
- HEREMaps (3.12.2)
- HEREMapsUI (2.1.1):
- HEREMapsUI (2.1.2):
- HEREMaps (= 3.12.2)
- OCMock (3.4.3)
- SwiftLint (0.31.0)
Expand All @@ -26,10 +26,10 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
EarlGrey: 289a16cc7d08a54b962d72881b21e36d5103b549
HEREMaps: 94aedb4134e14d806e34cc8688ec2db2584538ff
HEREMapsUI: 48a17c35a598f623f8cdab8b555492359f4fe90e
HEREMapsUI: 4d16a56eb55273bc7eef117e3f31b8a34f734af8
OCMock: 43565190abc78977ad44a61c0d20d7f0784d35ab
SwiftLint: 7a0227733d786395817373b2d0ca799fd0093ff3

PODFILE CHECKSUM: db038ba703980cb957f0e21468e3e6080beaef96

COCOAPODS: 1.6.1
COCOAPODS: 1.7.5

0 comments on commit 3762fe4

Please sign in to comment.