Skip to content

Commit 2cb1ff7

Browse files
authored
increase version (#437)
1 parent a09556f commit 2cb1ff7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

PennyMe.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@
518518
"$(inherited)",
519519
"@executable_path/Frameworks",
520520
);
521-
MARKETING_VERSION = 1.18;
521+
MARKETING_VERSION = 1.20;
522522
PRODUCT_BUNDLE_IDENTIFIER = "PennyMe--com.de.pennyme";
523523
PRODUCT_NAME = "$(TARGET_NAME)";
524524
SWIFT_VERSION = 4.2;
@@ -539,7 +539,7 @@
539539
"$(inherited)",
540540
"@executable_path/Frameworks",
541541
);
542-
MARKETING_VERSION = 1.18;
542+
MARKETING_VERSION = 1.20;
543543
PRODUCT_BUNDLE_IDENTIFIER = "PennyMe--com.de.pennyme";
544544
PRODUCT_NAME = "$(TARGET_NAME)";
545545
SWIFT_VERSION = 4.2;

PennyMe/VersionManager.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class VersionManager {
2626

2727
func showVersionInfoAlertIfNeeded() {
2828
if shouldShowVersionInfo() {
29-
let alert = UIAlertController(title: "PennyMe v\(currentVersion ?? "")", message: "It should be easier now to change locations of a machine. We also include some bugfixes (e.g., website links!)", preferredStyle: .alert)
29+
let alert = UIAlertController(title: "PennyMe v\(currentVersion ?? "")", message: "Bug fixes and improvements.", preferredStyle: .alert)
3030
alert.addAction(UIAlertAction(title: "OK", style: .default, handler: nil))
3131
UIApplication.shared.windows.first?.rootViewController?.present(alert, animated: true, completion: nil)
3232
}

0 commit comments

Comments
 (0)