Skip to content

Commit

Permalink
Merge pull request #605 from commons-stack/v_0_12_1
Browse files Browse the repository at this point in the history
v0.12.1
  • Loading branch information
kristoferlund authored Sep 27, 2022
2 parents d5092d0 + c8a75e2 commit 93f019e
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

## [0.12.1] - 2022-09-27

A minor release to fix some bugs related to image uploading.

### Fixed

- Better handling of uploaded logo images. Image uploads are now stored outside of the Docker container. This means that the logo image will persist across container restarts and upgrades. #564 #604
- Better support for serving Praise over http on localhost. No manual edits of `.env` needed, all settings are managed by `setup.sh`. #577 #604

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.0",
"version": "0.12.1",
"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.0",
"version": "0.12.1",
"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.0",
"version": "0.12.1",
"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.0",
"version": "0.12.1",
"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.0', //TODO: get this from package.json
current: '0.12.1', //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.0",
"version": "0.12.1",
"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.0",
"version": "0.12.1",
"license": "GPL-3.0-or-later",
"type": "commonjs",
"description": "Praise ENV setup scripts.",
Expand Down

0 comments on commit 93f019e

Please sign in to comment.