Skip to content

Commit

Permalink
Merge pull request #612 from commons-stack/v_0_12_2
Browse files Browse the repository at this point in the history
v0.12.2
  • Loading branch information
kristoferlund committed Sep 28, 2022
2 parents 6719723 + 80cffce commit 7a8c1dc
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 8 deletions.
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Setup script now uses a prebuilt Docker image to speed up setup process. #575 #606
## [0.12.2] - 2022-09-28

### Added

- **Devops:** Setup script now uses a prebuilt Docker image to speed up setup process. #575 #606
- **Devops:** Merged project `.env` files into a single root file to simplify for automated setup #591

### Fixed

- **API:** Quantify endpoint now disallows any scores that are not in the configured range #608 #610
- **Frontend:** Praise logo in dashboard is now linked again, taking user to start page #609 #611

### Upgrade Instructions

Beacause of changes to the `.env` file structure, you need to run the setup script after pulling
changes from GitHub.

1. `git pull`
2. `bash setup.sh`
3. `bash upgrade.sh`

## [0.12.1] - 2022-09-27

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "praise",
"version": "0.12.1",
"version": "0.12.2",
"license": "GPL-3.0-or-later",
"description": "Praise community contributions to build a culture of giving and gratitude.",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "api",
"version": "0.12.1",
"version": "0.12.2",
"license": "GPL-3.0-or-later",
"description": "The Praise REST API running on Node/Express, using MongoDB for storage.",
"type": "commonjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/discord-bot/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "discord-bot",
"version": "0.12.1",
"version": "0.12.2",
"license": "GPL-3.0-or-later",
"description": "The Praise Discord bot is the main way for users to interact with the Praise system.",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "0.12.1",
"version": "0.12.2",
"license": "GPL-3.0-or-later",
"description": "The Praise dashboard built on React/Recoil/Tailwind CSS.",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/model/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ interface PraiseAppVersion {

export const usePraiseAppVersion = (): PraiseAppVersion => {
const appVersion: PraiseAppVersion = {
current: '0.12.1', //TODO: get this from package.json
current: '0.12.2', //TODO: get this from package.json
latest: undefined,
newVersionAvailable: false,
};
Expand Down
2 changes: 1 addition & 1 deletion packages/mongodb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mongodb",
"version": "0.12.1",
"version": "0.12.2",
"license": "GPL-3.0-or-later",
"description": "The Prasie data is stored in a MongoDb database."
}
2 changes: 1 addition & 1 deletion packages/setup/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "setup",
"version": "0.12.1",
"version": "0.12.2",
"license": "GPL-3.0-or-later",
"type": "commonjs",
"description": "Praise ENV setup scripts.",
Expand Down

0 comments on commit 7a8c1dc

Please sign in to comment.