diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 8ef2606a9..46b703952 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.2.2](https://github.com/hackmcgill/dashboard/tree/2.2.2) - 2020-01-05 + +### Changed + +- Extend application close time + ## [2.2.1](https://github.com/hackmcgill/dashboard/tree/2.2.1) - 2020-01-03 ### Fixed diff --git a/package-lock.json b/package-lock.json index d7d4f6029..4f211a52b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "hackerapi-frontend", - "version": "2.2.1", + "version": "2.2.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 104671572..e5e692dbc 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "hackerapi-frontend", "homepage": "https://app.mchacks.ca", - "version": "2.2.1", + "version": "2.2.2", "private": true, "dependencies": { "@rebass/grid": "^6.0.0-7", diff --git a/src/config/constants.ts b/src/config/constants.ts index d061ebb70..7e6b5bd9a 100644 --- a/src/config/constants.ts +++ b/src/config/constants.ts @@ -64,7 +64,7 @@ export const WITHDRAWN_STATUS_TEXT = export const CHECKED_IN_STATUS_TEXT = 'You’re checked-in and ready to go!'; // Application management -export const APPLICATION_CLOSE_TIME = 1578113999000; // Jan 3, 2020 11:59:59PM EST +export const APPLICATION_CLOSE_TIME = 1578286800000; // Jan 6, 2020 00:00:00 GMT -0500 export const DEADLINE_PASSED_LABEL = 'Sorry, we are no longer accepting applications at this time.'; export const BARRIERS_LABEL = 'Would you require any accommodations?';