Skip to content

Commit

Permalink
Release v5.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinejaussoin authored Jun 25, 2023
1 parent cf27353 commit 971d2f8
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ This will run a demo version, which you can turn into a fully licenced version b

## Versions History

### Version 5.2.1 (hotfix)

- Header logo bug fix

### Version 5.2.0

- [⭐️ Self-Hosting] Adding [white-labelling customisation](https://docs.retrospected.com/docs/self-hosting/white-labelling) options to Self-Hosted instances
Expand Down
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@retrospected/backend",
"version": "5.2.0",
"version": "5.2.1",
"license": "GNU GPLv3",
"private": true,
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@retrospected/docs",
"version": "5.2.0",
"version": "5.2.1",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@retrospected/frontend",
"version": "5.2.0",
"version": "5.2.1",
"license": "GNU GPLv3",
"private": true,
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/layout/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function Header() {
</IconButton>
<MainTitle onClick={goToHome} data-cy="header-home-button">
<img
src={config ? config.LOGO : logoIcon}
src={config.LOGO ? config.LOGO : logoIcon}
alt="Retrospected Icon"
height="30"
/>
Expand Down
2 changes: 1 addition & 1 deletion integration/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@retrospected/integration",
"version": "5.2.0",
"version": "5.2.1",
"description": "Integrations tests",
"main": "index.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion marketing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@retrospected/marketing",
"version": "5.2.0",
"version": "5.2.1",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
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": "retrospected",
"version": "5.2.0",
"version": "5.2.1",
"description": "An agile retrospective board - Powering www.retrospected.com",
"private": true,
"scripts": {
Expand Down

0 comments on commit 971d2f8

Please sign in to comment.