diff --git a/backend/config.py b/backend/config.py index ecc0fa1..28dc3a3 100644 --- a/backend/config.py +++ b/backend/config.py @@ -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.3.4" +VERSION = "0.4.0" diff --git a/frontend/src/components/help/HelpNav.vue b/frontend/src/components/help/HelpNav.vue index 021d8bf..e946e87 100644 --- a/frontend/src/components/help/HelpNav.vue +++ b/frontend/src/components/help/HelpNav.vue @@ -44,7 +44,7 @@ export default { inject: ["apiInfo"], data() { return { - frontendVersion: "0.3.4" + frontendVersion: "0.4.0" }; } }