diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index af88495c..e21a7db0 100644 --- a/.github/CHANGELOG.md +++ b/.github/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.1.2](https://github.com/hackmcgill/hackerapi/tree/2.1.2) - 2020-01-05 + +### Changed + +- Extend application close time + ## [2.1.1](https://github.com/hackmcgill/hackerapi/tree/2.1.1) - 2020-01-03 ### Fixed diff --git a/VERSION b/VERSION index 50aea0e7..8f9174b4 100755 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1.0 \ No newline at end of file +2.1.2 \ No newline at end of file diff --git a/constants/general.constant.js b/constants/general.constant.js index af1f6ed2..32cd591b 100644 --- a/constants/general.constant.js +++ b/constants/general.constant.js @@ -25,8 +25,8 @@ const HACKER_STATUSES = [ HACKER_STATUS_CHECKED_IN, HACKER_STATUS_DECLINED ]; -// This date is Jan 3, 2020 11:59:59PM EST -const APPLICATION_CLOSE_TIME = 1578113999000; +// This date is Jan 6, 2020 00:00:00 GMT -0500 +const APPLICATION_CLOSE_TIME = 1578286800000; const SAMPLE_DIET_RESTRICTIONS = [ "None", diff --git a/package-lock.json b/package-lock.json index 3167db8a..17f75db6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "hackerAPI", - "version": "2.1.1", + "version": "2.1.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index ecf8a136..be2c4f90 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hackerAPI", - "version": "2.1.1", + "version": "2.1.2", "private": true, "scripts": { "start": "DEBUG=hackboard:* NODE_ENV=development nodemon --ignore gcp_creds.json ./bin/www.js",