Skip to content

Commit

Permalink
Merge pull request #563 from commons-stack/v_0_11_2
Browse files Browse the repository at this point in the history
v0.11.2
  • Loading branch information
kristoferlund authored Aug 24, 2022
2 parents c39435f + 0bdc729 commit 7ffe7b2
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
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.11.1",
"version": "0.11.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.11.1",
"version": "0.11.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.11.1",
"version": "0.11.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.11.1",
"version": "0.11.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/layouts/AuthenticatedLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const AuthenticatedLayout = (): JSX.Element | null => {
{isAdmin && appVersion.newVersionAvailable && (
<HeaderBanner bannerKey={`NEW VERSION ${appVersion.latest}`}>
<p>
🎉 There is a new version of the Praise out! You are running{' '}
🎉 There is a new version of Praise out! You are running{' '}
{appVersion.current}, latest version is {appVersion.latest}.{' '}
<a
href="https://github.com/commons-stack/praise/releases"
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 @@ -32,7 +32,7 @@ interface PraiseAppVersion {

export const usePraiseAppVersion = (): PraiseAppVersion => {
const appVersion: PraiseAppVersion = {
current: '0.11.1', //TODO: get this from package.json
current: '0.11.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.11.1",
"version": "0.11.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.11.1",
"version": "0.11.2",
"license": "GPL-3.0-or-later",
"type": "commonjs",
"description": "Praise ENV setup scripts.",
Expand Down

0 comments on commit 7ffe7b2

Please sign in to comment.