Skip to content

Commit

Permalink
Release v5.3.1 (hotfix)
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinejaussoin authored Jul 25, 2023
1 parent d2051b6 commit 33df5db
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.3.1 (hotfix)

- 🐛 Adding a group was not working in the previous version. This is now fixed.

### Version 5.3.0

- [⭐️ Self-Hosting] new features:
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.3.0",
"version": "5.3.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.3.0",
"version": "5.3.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.3.0",
"version": "5.3.1",
"license": "GNU GPLv3",
"private": true,
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/game/board/Column.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const Column: React.FC<ColumnProps> = ({
<Groups>
{groups.map((group) => {
const posts = group.posts.filter(searchPredicate);
if (posts.length === 0) {
if (search && posts.length === 0) {
return null;
}
return (
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.3.0",
"version": "5.3.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.3.0",
"version": "5.3.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.3.0",
"version": "5.3.1",
"description": "An agile retrospective board - Powering www.retrospected.com",
"private": true,
"scripts": {
Expand Down

0 comments on commit 33df5db

Please sign in to comment.