diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index e24f59b..9460599 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -12,6 +12,13 @@ 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.6 - 2021-10-25 + +### Bug fixes and improvements :bug: + +- Add Health endpoint and export metrics using `starlette_exporter`. PR [#23](https://github.com/onaio/pull/23) +- Allow export settings to be configured via the API. PR [#24](https://github.com/onaio/pull/24) + ## v0.0.5 - 2021-07-05 ### Bug fixes and improvements :bug: @@ -78,4 +85,4 @@ managed Hyper database files. ### Known Limitations of v0.0.1 -- The application currently uses session cookies to authenticate users; there are plans to phase out session cookies in favor of API Tokens. As of now users may need to clear the cookies in order to unauthenticate. \ No newline at end of file +- The application currently uses session cookies to authenticate users; there are plans to phase out session cookies in favor of API Tokens. As of now users may need to clear the cookies in order to unauthenticate. diff --git a/app/settings.py b/app/settings.py index 84e3225..8b45c7c 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.5" + app_version: str = "v0.0.6" app_host: str = "127.0.0.1" app_port: int = 8000 database_url: str = "postgres://duva:duva@127.0.0.1/duva"