Skip to content

Commit

Permalink
Merge pull request #191 from heremaps/MSDKUI-2340
Browse files Browse the repository at this point in the history
MSDKUI-2340: Update version number
  • Loading branch information
ephmoc authored Dec 4, 2020
2 parents 081a9b6 + b6b0990 commit 5e78afd
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Documentation/Guides/QuickStart.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion Documentation/Guides_Examples/HelloMSDKUI/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- HEREMaps (3.17.2)
- HEREMapsUI (2.1.6):
- HEREMapsUI (2.1.7):
- HEREMaps (= 3.17.2)

DEPENDENCIES:
Expand Down
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, '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
2 changes: 1 addition & 1 deletion Documentation/Guides_Examples/MSDKUIPrimer/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- HEREMaps (3.17.2)
- HEREMapsUI (2.1.6):
- HEREMapsUI (2.1.7):
- HEREMaps (= 3.17.2)

DEPENDENCIES:
Expand Down
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.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'
Expand Down
6 changes: 3 additions & 3 deletions MSDKUI.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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)";
Expand Down Expand Up @@ -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)";
Expand Down Expand Up @@ -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)";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
Expand Down Expand Up @@ -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")
}
}
2 changes: 1 addition & 1 deletion MSDKUI_Tests/VersionTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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!")
}
Expand Down
2 changes: 1 addition & 1 deletion Podfile.lock
Original file line number Diff line number Diff line change
@@ -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)
Expand Down

0 comments on commit 5e78afd

Please sign in to comment.