From b6b09909db3f98d5fc9a28681d664213ced9eb8b Mon Sep 17 00:00:00 2001 From: Krzysztof Hubaczek <19998177+ephmoc@users.noreply.github.com> Date: Fri, 4 Dec 2020 13:44:40 +0100 Subject: [PATCH] MSDKUI-2340: Update version number Signed-off-by: Krzysztof Hubaczek <19998177+ephmoc@users.noreply.github.com> --- Documentation/Guides/QuickStart.md | 2 +- Documentation/Guides_Examples/HelloMSDKUI/Podfile.lock | 2 +- Documentation/Guides_Examples/MSDKUIPrimer/Podfile | 2 +- Documentation/Guides_Examples/MSDKUIPrimer/Podfile.lock | 2 +- HEREMapsUI.podspec | 2 +- MSDKUI.xcodeproj/project.pbxproj | 6 +++--- .../View Controllers/AboutTableViewDataSourceTests.swift | 6 +++--- MSDKUI_Tests/VersionTests.swift | 2 +- Podfile.lock | 2 +- 9 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Documentation/Guides/QuickStart.md b/Documentation/Guides/QuickStart.md index 6a8fef3..516045c 100644 --- a/Documentation/Guides/QuickStart.md +++ b/Documentation/Guides/QuickStart.md @@ -72,7 +72,7 @@ To run CocoaPods, please close Xcode and create a new "Podfile" in your project' ```ruby target 'HelloMSDKUI' do platform :ios, '12.0' - pod 'HEREMapsUI', '2.1.6' + pod 'HEREMapsUI', '2.1.7' end ``` diff --git a/Documentation/Guides_Examples/HelloMSDKUI/Podfile.lock b/Documentation/Guides_Examples/HelloMSDKUI/Podfile.lock index 00cae6f..940ef0e 100644 --- a/Documentation/Guides_Examples/HelloMSDKUI/Podfile.lock +++ b/Documentation/Guides_Examples/HelloMSDKUI/Podfile.lock @@ -1,6 +1,6 @@ PODS: - HEREMaps (3.17.2) - - HEREMapsUI (2.1.6): + - HEREMapsUI (2.1.7): - HEREMaps (= 3.17.2) DEPENDENCIES: diff --git a/Documentation/Guides_Examples/MSDKUIPrimer/Podfile b/Documentation/Guides_Examples/MSDKUIPrimer/Podfile index 06b1643..96b07a2 100644 --- a/Documentation/Guides_Examples/MSDKUIPrimer/Podfile +++ b/Documentation/Guides_Examples/MSDKUIPrimer/Podfile @@ -1,5 +1,5 @@ target 'MSDKUIPrimer' do platform :ios, '12.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.6' + # Alternatively, to integrate dependencies based on a released podspec use: pod 'HEREMapsUI', '2.1.7' end diff --git a/Documentation/Guides_Examples/MSDKUIPrimer/Podfile.lock b/Documentation/Guides_Examples/MSDKUIPrimer/Podfile.lock index 53d76db..abd7491 100644 --- a/Documentation/Guides_Examples/MSDKUIPrimer/Podfile.lock +++ b/Documentation/Guides_Examples/MSDKUIPrimer/Podfile.lock @@ -1,6 +1,6 @@ PODS: - HEREMaps (3.17.2) - - HEREMapsUI (2.1.6): + - HEREMapsUI (2.1.7): - HEREMaps (= 3.17.2) DEPENDENCIES: diff --git a/HEREMapsUI.podspec b/HEREMapsUI.podspec index c36d775..0ee71cd 100644 --- a/HEREMapsUI.podspec +++ b/HEREMapsUI.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = 'HEREMapsUI' s.module_name = 'MSDKUI' - s.version = '2.1.6' + s.version = '2.1.7' 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' diff --git a/MSDKUI.xcodeproj/project.pbxproj b/MSDKUI.xcodeproj/project.pbxproj index 4edbe6b..1390fd0 100644 --- a/MSDKUI.xcodeproj/project.pbxproj +++ b/MSDKUI.xcodeproj/project.pbxproj @@ -2205,7 +2205,7 @@ INFOPLIST_FILE = "$(SRCROOT)/Commons/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 2.1.6; + MARKETING_VERSION = 2.1.7; MODULE_NAME = MSDKUI_Demo; PRODUCT_BUNDLE_IDENTIFIER = com.here.msdkui.demo; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -2238,7 +2238,7 @@ INFOPLIST_FILE = "$(SRCROOT)/Commons/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 2.1.6; + MARKETING_VERSION = 2.1.7; MODULE_NAME = MSDKUI_Demo; PRODUCT_BUNDLE_IDENTIFIER = com.here.msdkui.demo; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -2527,7 +2527,7 @@ INFOPLIST_FILE = "$(SRCROOT)/Commons/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 2.1.6; + MARKETING_VERSION = 2.1.7; MODULE_NAME = MSDKUI_Demo; PRODUCT_BUNDLE_IDENTIFIER = com.here.msdkui.demo; PRODUCT_NAME = "$(TARGET_NAME)"; diff --git a/MSDKUI_Demo_Tests/View Controllers/AboutTableViewDataSourceTests.swift b/MSDKUI_Demo_Tests/View Controllers/AboutTableViewDataSourceTests.swift index 61a5e30..f4e438c 100644 --- a/MSDKUI_Demo_Tests/View Controllers/AboutTableViewDataSourceTests.swift +++ b/MSDKUI_Demo_Tests/View Controllers/AboutTableViewDataSourceTests.swift @@ -54,12 +54,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.6", "It has the correct description") + XCTAssertEqual(firstItem.description, "2.1.7", "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.6", "It has the correct description") + XCTAssertEqual(secondItem.description, "2.1.7", "It has the correct description") // Third item let thirdItem = try require(dataSource?.item(at: IndexPath(row: 2, section: 0))) @@ -100,6 +100,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.6", "It has the correct detail text") + XCTAssertEqual(cell?.detailTextLabel?.text, "2.1.7", "It has the correct detail text") } } diff --git a/MSDKUI_Tests/VersionTests.swift b/MSDKUI_Tests/VersionTests.swift index 0d05b29..1cbf5cb 100644 --- a/MSDKUI_Tests/VersionTests.swift +++ b/MSDKUI_Tests/VersionTests.swift @@ -20,7 +20,7 @@ import XCTest final class VersionTests: XCTestCase { /// Tests that the framework version is correctly retrieved. func testFrameworkVersion() { - let expectedVersion = "2.1.6" + let expectedVersion = "2.1.7" XCTAssertEqual(Version.getString(), expectedVersion, "Not the expected version!") } diff --git a/Podfile.lock b/Podfile.lock index d0adfd3..07ea285 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -1,7 +1,7 @@ PODS: - EarlGrey (1.16.0) - HEREMaps (3.17.2) - - HEREMapsUI (2.1.6): + - HEREMapsUI (2.1.7): - HEREMaps (= 3.17.2) - OCMock (3.7.1) - SwiftLint (0.41.0)