Skip to content

Commit

Permalink
Bump version to 1.1.1 (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanCooper9 authored and Evan Cooper committed Feb 3, 2022
1 parent 86976da commit 8a2a96e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Friendly Competitions.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.1.0;
MARKETING_VERSION = 1.1.1;
PRODUCT_BUNDLE_IDENTIFIER = com.evancooper.FriendlyCompetitions.debug;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -957,7 +957,7 @@
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = "Friendly Competitions/Info.plist";
INFOPLIST_KEY_CFBundleDisplayName = "Competitions (DBG)";
INFOPLIST_KEY_CFBundleDisplayName = Competitions;
INFOPLIST_KEY_NSHealthClinicalHealthRecordsShareUsageDescription = "We need access to HealthKit so you can compete against your friends!";
INFOPLIST_KEY_NSHealthShareUsageDescription = "We need access to HealthKit so you can compete against your friends!";
INFOPLIST_KEY_NSHealthUpdateUsageDescription = "We need access to HealthKit so you can compete against your friends!";
Expand All @@ -972,7 +972,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.1.0;
MARKETING_VERSION = 1.1.1;
PRODUCT_BUNDLE_IDENTIFIER = com.evancooper.FriendlyCompetitions;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
2 changes: 1 addition & 1 deletion Friendly Competitions/FriendlyCompetitions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ private final class AppModel: ObservableObject {

@Published(storedWithKey: "currentUser") var currentUser: User? = nil {
didSet {
Crashlytics.crashlytics().setUserID(currentUser.id ?? "none")
Crashlytics.crashlytics().setUserID(currentUser?.id ?? "none")
setupManagers()
}
}
Expand Down

0 comments on commit 8a2a96e

Please sign in to comment.