diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index 00238fca..af88495c 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.1](https://github.com/hackmcgill/hackerapi/tree/2.1.1) - 2020-01-03 + +### Fixed + +- Fixed application close time + ## [2.1.0](https://github.com/hackmcgill/hackerapi/tree/2.1.0) - 2020-01-01 ### Added diff --git a/constants/general.constant.js b/constants/general.constant.js index 52c7b56c..af1f6ed2 100644 --- a/constants/general.constant.js +++ b/constants/general.constant.js @@ -26,7 +26,7 @@ const HACKER_STATUSES = [ HACKER_STATUS_DECLINED ]; // This date is Jan 3, 2020 11:59:59PM EST -const APPLICATION_CLOSE_TIME = 1578070799000; +const APPLICATION_CLOSE_TIME = 1578113999000; const SAMPLE_DIET_RESTRICTIONS = [ "None", diff --git a/package-lock.json b/package-lock.json index 5f85310a..3167db8a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "hackerAPI", - "version": "2.1.0", + "version": "2.1.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 8b164084..ecf8a136 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hackerAPI", - "version": "2.1.0", + "version": "2.1.1", "private": true, "scripts": { "start": "DEBUG=hackboard:* NODE_ENV=development nodemon --ignore gcp_creds.json ./bin/www.js",