Skip to content

Commit

Permalink
Merge pull request #161 from heremaps/ps/MSDKUI-2187
Browse files Browse the repository at this point in the history
MSDKUI-2187: Updated version number to 2.1.4
  • Loading branch information
PiotrSzmyt authored Jan 15, 2020
2 parents 0d00d56 + fd5c887 commit 3b64381
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
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.3'
s.version = '2.1.4'
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
6 changes: 3 additions & 3 deletions MSDKUI.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2203,7 +2203,7 @@
INFOPLIST_FILE = "$(SRCROOT)/Commons/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 2.1.3;
MARKETING_VERSION = 2.1.4;
MODULE_NAME = MSDKUI_Demo;
PRODUCT_BUNDLE_IDENTIFIER = com.here.msdkui.demo;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -2236,7 +2236,7 @@
INFOPLIST_FILE = "$(SRCROOT)/Commons/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 2.1.3;
MARKETING_VERSION = 2.1.4;
MODULE_NAME = MSDKUI_Demo;
PRODUCT_BUNDLE_IDENTIFIER = com.here.msdkui.demo;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -2524,7 +2524,7 @@
INFOPLIST_FILE = "$(SRCROOT)/Commons/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 2.1.3;
MARKETING_VERSION = 2.1.4;
MODULE_NAME = MSDKUI_Demo;
PRODUCT_BUNDLE_IDENTIFIER = com.here.msdkui.demo;
PRODUCT_NAME = "$(TARGET_NAME)";
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.3", "It has the correct description")
XCTAssertEqual(firstItem.description, "2.1.4", "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.3", "It has the correct description")
XCTAssertEqual(secondItem.description, "2.1.4", "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.3", "It has the correct detail text")
XCTAssertEqual(cell?.detailTextLabel?.text, "2.1.4", "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.3"
let expectedVersion = "2.1.4"

XCTAssertEqual(Version.getString(), expectedVersion, "Not the expected version!")
}
Expand Down
4 changes: 2 additions & 2 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PODS:
- EarlGrey (1.15.0)
- HEREMaps (3.14.2)
- HEREMapsUI (2.1.3):
- HEREMapsUI (2.1.4):
- HEREMaps (= 3.14.2)
- OCMock (3.4.3)
- SwiftLint (0.31.0)
Expand All @@ -26,7 +26,7 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
EarlGrey: 289a16cc7d08a54b962d72881b21e36d5103b549
HEREMaps: 183821bb064fa699a933e85e8d64b5b86e1775a1
HEREMapsUI: 8c37101c56b17a1cb7effbff1200384dce842428
HEREMapsUI: aa699bec653787bb6de35b9dda27bc1e606956e2
OCMock: 43565190abc78977ad44a61c0d20d7f0784d35ab
SwiftLint: 7a0227733d786395817373b2d0ca799fd0093ff3

Expand Down

0 comments on commit 3b64381

Please sign in to comment.