Skip to content

Commit

Permalink
Bump version number and semester dates
Browse files Browse the repository at this point in the history
  • Loading branch information
JHawk0224 committed Jan 15, 2025
1 parent b14ca62 commit 068fe74
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions PennMobile.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2854,7 +2854,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = navigation;
CF_BUNDLE_SHORT_VERSION_STRING = 8.0.9;
CF_BUNDLE_SHORT_VERSION_STRING = 8.0.10;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = PennMobile/PennMobile.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
Expand Down Expand Up @@ -2895,7 +2895,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = navigation;
CF_BUNDLE_SHORT_VERSION_STRING = 8.0.9;
CF_BUNDLE_SHORT_VERSION_STRING = 8.0.10;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = PennMobile/PennMobile.entitlements;
CODE_SIGN_IDENTITY = "iPhone Distribution";
Expand Down Expand Up @@ -3027,7 +3027,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = navigation;
ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
CF_BUNDLE_SHORT_VERSION_STRING = 8.0.9;
CF_BUNDLE_SHORT_VERSION_STRING = 8.0.10;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
CLANG_ENABLE_OBJC_WEAK = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
Expand Down Expand Up @@ -3070,7 +3070,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = navigation;
ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
CF_BUNDLE_SHORT_VERSION_STRING = 8.0.9;
CF_BUNDLE_SHORT_VERSION_STRING = 8.0.10;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
CLANG_ENABLE_OBJC_WEAK = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
Expand Down
4 changes: 2 additions & 2 deletions PennMobileShared/General/Extensions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -350,14 +350,14 @@ public extension Date {
static var startOfSemester: Date {
let formatter = DateFormatter()
formatter.dateFormat = "yyyy-MM-dd"
return formatter.date(from: "2024-08-27")!
return formatter.date(from: "2025-01-15")!

}

static var endOfSemester: Date {
let formatter = DateFormatter()
formatter.dateFormat = "yyyy-MM-dd"
return formatter.date(from: "2024-12-19")!
return formatter.date(from: "2025-05-13")!
}
}

Expand Down

0 comments on commit 068fe74

Please sign in to comment.