bump version

This commit is contained in:
hay-kot 2021-04-18 17:45:56 -08:00
parent d4a9ecd65f
commit 6190f0fd1c
3 changed files with 10 additions and 1 deletions

View File

@ -0,0 +1,8 @@
# v0.4.3
**App Version: v0.4.3**
**Database Version: v0.4.0**
## Bug Fixes
- Fix Upload error for Migrations

View File

@ -77,6 +77,7 @@ nav:
- Guidelines: "contributors/developers-guide/general-guidelines.md"
- Development Road Map: "roadmap.md"
- Change Log:
- v0.4.3 Hot Fix: "changelog/v0.4.3.md"
- v0.4.2 Backend/Migrations: "changelog/v0.4.2.md"
- v0.4.1 Frontend/UI: "changelog/v0.4.1.md"
- v0.4.0 Authentication: "changelog/v0.4.0.md"

View File

@ -6,7 +6,7 @@ from typing import Optional, Union
import dotenv
from pydantic import BaseSettings, Field, validator
APP_VERSION = "v0.4.2"
APP_VERSION = "v0.4.3"
DB_VERSION = "v0.4.0"
CWD = Path(__file__).parent