Skip to content

Commit

Permalink
Release 0.4.1 (#216)
Browse files Browse the repository at this point in the history
- fix: cascade delete permissions (closes #200) (#215)
  • Loading branch information
TeodoraPavlova authored Sep 3, 2024
1 parent ec959b1 commit e84a0df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ def backends(self) -> List[str]:
SQLALCHEMY_DATABASE_URL = f"postgresql+psycopg2://{settings.pg_user}:{settings.pg_password}@" \
f"{settings.pg_host}:{settings.pg_port}/{settings.pg_db}?"\
f"client_encoding={settings.pg_client_encoding}"
VERSION = "0.4.0"
VERSION = "0.4.1"
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "AIMAAS",
"version": "0.4.0",
"version": "0.4.1",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/help/HelpNav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default {
inject: ["apiInfo"],
data() {
return {
frontendVersion: "0.4.0"
frontendVersion: "0.4.1"
};
}
}
Expand Down

0 comments on commit e84a0df

Please sign in to comment.