Skip to content

Commit

Permalink
Merge pull request #205 from heremaps/MSDKUI-2386
Browse files Browse the repository at this point in the history
MSDKUI-2386: Update version number
  • Loading branch information
ephmoc authored Apr 20, 2021
2 parents 8277739 + 0dcb9ba commit f99a580
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 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.7'
pod 'HEREMapsUI', '2.1.8'
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.18.2)
- HEREMapsUI (2.1.7):
- HEREMapsUI (2.1.8):
- HEREMaps (= 3.18.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.7'
# Alternatively, to integrate dependencies based on a released podspec use: pod 'HEREMapsUI', '2.1.8'
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.18.2)
- HEREMapsUI (2.1.7):
- HEREMapsUI (2.1.8):
- HEREMaps (= 3.18.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.7'
s.version = '2.1.8'
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 @@ -2207,7 +2207,7 @@
INFOPLIST_FILE = "$(SRCROOT)/Commons/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 2.1.7;
MARKETING_VERSION = 2.1.8;
MODULE_NAME = MSDKUI_Demo;
PRODUCT_BUNDLE_IDENTIFIER = com.here.msdkui.demo;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -2240,7 +2240,7 @@
INFOPLIST_FILE = "$(SRCROOT)/Commons/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 2.1.7;
MARKETING_VERSION = 2.1.8;
MODULE_NAME = MSDKUI_Demo;
PRODUCT_BUNDLE_IDENTIFIER = com.here.msdkui.demo;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -2530,7 +2530,7 @@
INFOPLIST_FILE = "$(SRCROOT)/Commons/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 2.1.7;
MARKETING_VERSION = 2.1.8;
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.7", "It has the correct description")
XCTAssertEqual(firstItem.description, "2.1.8", "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.7", "It has the correct description")
XCTAssertEqual(secondItem.description, "2.1.8", "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.7", "It has the correct detail text")
XCTAssertEqual(cell?.detailTextLabel?.text, "2.1.8", "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.7"
let expectedVersion = "2.1.8"

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.16.0)
- HEREMaps (3.18.2)
- HEREMapsUI (2.1.7):
- HEREMapsUI (2.1.8):
- HEREMaps (= 3.18.2)
- OCMock (3.8.1)
- SwiftLint (0.43.1)
Expand All @@ -26,7 +26,7 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
EarlGrey: 455e5597ae5ccaca92cd46b81d8b25cacec060a1
HEREMaps: 2ce8fe190eaf7c3438c381af11650cad7d4879c6
HEREMapsUI: 8a89414255b3f6c321c709ab3a51d4de518c11c8
HEREMapsUI: 88eace0b19a8a77eb9ea0b56df6d9209c4d547dc
OCMock: 29f6e52085b4e7d9b075cbf03ed7c3112f82f934
SwiftLint: 99f82d07b837b942dd563c668de129a03fc3fb52

Expand Down

0 comments on commit f99a580

Please sign in to comment.