Skip to content

Commit

Permalink
Merge pull request #549 from pennlabs/jhawk0224/2024-08-20/bump-semes…
Browse files Browse the repository at this point in the history
…ter-dates

Update semester dates
  • Loading branch information
JHawk0224 authored Aug 20, 2024
2 parents 85dcc84 + 959d105 commit 947756a
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 @@ -3057,7 +3057,7 @@
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = navigation;
CF_BUNDLE_SHORT_VERSION_STRING = 8.0.3;
CF_BUNDLE_SHORT_VERSION_STRING = 8.0.4;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = PennMobile/PennMobile.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
Expand Down Expand Up @@ -3099,7 +3099,7 @@
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = navigation;
CF_BUNDLE_SHORT_VERSION_STRING = 8.0.3;
CF_BUNDLE_SHORT_VERSION_STRING = 8.0.4;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = PennMobile/PennMobile.entitlements;
CODE_SIGN_IDENTITY = "iPhone Distribution";
Expand Down Expand Up @@ -3231,7 +3231,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = navigation;
ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
CF_BUNDLE_SHORT_VERSION_STRING = 8.0.3;
CF_BUNDLE_SHORT_VERSION_STRING = 8.0.4;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
CLANG_ENABLE_OBJC_WEAK = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
Expand Down Expand Up @@ -3274,7 +3274,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = navigation;
ASSETCATALOG_COMPILER_WIDGET_BACKGROUND_COLOR_NAME = WidgetBackground;
CF_BUNDLE_SHORT_VERSION_STRING = 8.0.3;
CF_BUNDLE_SHORT_VERSION_STRING = 8.0.4;
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-01-18")!
return formatter.date(from: "2024-08-27")!

}

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

Expand Down

0 comments on commit 947756a

Please sign in to comment.