Skip to content

Commit 93f019e

Browse files
Merge pull request #605 from commons-stack/v_0_12_1
v0.12.1
2 parents d5092d0 + c8a75e2 commit 93f019e

File tree

8 files changed

+13
-7
lines changed

8 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Fixed
1313

14+
## [0.12.1] - 2022-09-27
15+
16+
A minor release to fix some bugs related to image uploading.
17+
18+
### Fixed
19+
1420
- 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
1521
- Better support for serving Praise over http on localhost. No manual edits of `.env` needed, all settings are managed by `setup.sh`. #577 #604
1622

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "praise",
3-
"version": "0.12.0",
3+
"version": "0.12.1",
44
"license": "GPL-3.0-or-later",
55
"description": "Praise community contributions to build a culture of giving and gratitude.",
66
"private": true,

packages/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "api",
3-
"version": "0.12.0",
3+
"version": "0.12.1",
44
"license": "GPL-3.0-or-later",
55
"description": "The Praise REST API running on Node/Express, using MongoDB for storage.",
66
"type": "commonjs",

packages/discord-bot/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "discord-bot",
3-
"version": "0.12.0",
3+
"version": "0.12.1",
44
"license": "GPL-3.0-or-later",
55
"description": "The Praise Discord bot is the main way for users to interact with the Praise system.",
66
"dependencies": {

packages/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "frontend",
3-
"version": "0.12.0",
3+
"version": "0.12.1",
44
"license": "GPL-3.0-or-later",
55
"description": "The Praise dashboard built on React/Recoil/Tailwind CSS.",
66
"private": true,

packages/frontend/src/model/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ interface PraiseAppVersion {
3333

3434
export const usePraiseAppVersion = (): PraiseAppVersion => {
3535
const appVersion: PraiseAppVersion = {
36-
current: '0.12.0', //TODO: get this from package.json
36+
current: '0.12.1', //TODO: get this from package.json
3737
latest: undefined,
3838
newVersionAvailable: false,
3939
};

packages/mongodb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mongodb",
3-
"version": "0.12.0",
3+
"version": "0.12.1",
44
"license": "GPL-3.0-or-later",
55
"description": "The Prasie data is stored in a MongoDb database."
66
}

packages/setup/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup",
3-
"version": "0.12.0",
3+
"version": "0.12.1",
44
"license": "GPL-3.0-or-later",
55
"type": "commonjs",
66
"description": "Praise ENV setup scripts.",

0 commit comments

Comments
 (0)