Skip to content

Commit

Permalink
Tag release v0.0.6 (#25)
Browse files Browse the repository at this point in the history
* Add release notes for v0.0.6

* Bump version to `v0.0.6`
  • Loading branch information
DavisRayM authored Oct 25, 2021
1 parent ca263af commit 3dc0f2c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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.
- 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.
2 changes: 1 addition & 1 deletion app/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:[email protected]/duva"
Expand Down

0 comments on commit 3dc0f2c

Please sign in to comment.