From a72919341cb714070c429e454565208dbbe2e308 Mon Sep 17 00:00:00 2001 From: Davis Raymond Muro Date: Wed, 2 Mar 2022 14:11:15 +0300 Subject: [PATCH] Bump version to `v0.0.8` --- RELEASE_NOTES.md | 6 ++++++ app/settings.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index f77aad2..932f08d 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -12,6 +12,12 @@ This project has been funded by DG ECHO and implemented by Caritas Switzerland a All release notes for this project will be documented in this file; this project follows [Semantic Versioning](https://semver.org/). +## v0.0.8 - 2022-03-02 + +### Bug fixes and improvements :bug: + +- Validate configurations before creation / modification. PR [#32](https://github.com/onaio/duva/pull/32) + ## v0.0.7 - 2022-01-20 ### Bug fixes and improvements :bug: diff --git a/app/settings.py b/app/settings.py index bdce1de..dd47cde 100644 --- a/app/settings.py +++ b/app/settings.py @@ -4,7 +4,7 @@ class Settings(BaseSettings): app_name: str = "Duva" app_description: str = "" - app_version: str = "v0.0.7" + app_version: str = "v0.0.8" app_host: str = "127.0.0.1" app_port: int = 8000 database_url: str = "postgres://duva:duva@127.0.0.1/duva"