Skip to content

Commit

Permalink
Bump version in prep for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarno Rantanen committed Mar 30, 2020
1 parent cf398bc commit b2ba905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/core/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function prepareResponseForStorage(response: FrontendResponseModelT, coun
timestamp: new Date() // for security, don't trust browser clock, as it may be wrong or fraudulent
.toISOString()
.replace(/:..\..*/, ':00.000Z'), // to preserve privacy, intentionally reduce precision of the timestamp
app_version: 'v1.1', // TODO: This should be set by the deploy process, not hard-coded!
app_version: 'v1.2', // TODO: This should be set by the deploy process, not hard-coded!
country_code: countryCode,
postal_code: mapPostalCode(response).postal_code, // to protect the privacy of participants from very small postal code areas, they are merged into larger ones, based on known population data
duration: response.duration === null ? null : parseInt(response.duration),
Expand Down

0 comments on commit b2ba905

Please sign in to comment.