Fix version number for 0.5.4 (#957)

* Add changelog for v0.5.4 to the docs

* Fix APP_VERSION in config file

This fixed #926
This commit is contained in:
Felix Breidenstein 2022-02-03 21:33:56 +01:00 committed by GitHub
parent cfa5c9606d
commit e82020b7e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -94,7 +94,8 @@ nav:
- Style Guide: "contributors/developers-guide/style-guide.md"
- Development Road Map: "roadmap.md"
- Change Log:
- v0.5.3 - Bug Fixes: "changelog/v0.5.3.md"
- v0.5.4 Bug Fixes: "changelog/v0.5.4.md"
- v0.5.3 Bug Fixes: "changelog/v0.5.3.md"
- v0.5.2 Misc Updates: "changelog/v0.5.2.md"
- v0.5.1 Bug Fixes: "changelog/v0.5.1.md"
- v0.5.0 General Upgrades: "changelog/v0.5.0.md"

View File

@ -6,7 +6,7 @@ from typing import Any, Optional, Union
import dotenv
from pydantic import BaseSettings, Field, PostgresDsn, validator
APP_VERSION = "v0.5.3"
APP_VERSION = "v0.5.4"
DB_VERSION = "v0.5.0"
CWD = Path(__file__).parent