Skip to content

Commit

Permalink
Bump version to v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ukanga committed Jan 15, 2025
1 parent 3ec7822 commit 73d8bee
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
7 changes: 7 additions & 0 deletions 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.2.0 - 2025-01-15

- Add CRUD classes to help with CRUD operations for the models
- Re-organize project structure
- Clean-up Hyperfile lifecycle functions


## v0.1.0 - 2022-09-26

### Bug fixes and improvements :bug:
Expand Down
2 changes: 1 addition & 1 deletion app/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Settings(BaseSettings):
APP_DESCRIPTION: str = (
"Duva is an application that converts CSV to Tableau Hyper Databases"
)
APP_VERSION: str = "1.0.0"
APP_VERSION: str = "0.2.0"
APP_HOST: str = "127.0.0.1"
APP_PORT: int = 8000
MEDIA_ROOT: str = os.getenv("MEDIA_ROOT", "/app/media")
Expand Down
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[metadata]
name = Duva
version = 0.1.0
version = 0.2.0
author = Ona Systems Inc
license = Copyright (c) 2022 Ona Systems Inc All rights reserved
license = Copyright (c) 2022 - 2025 Ona Systems Inc All rights reserved
license_file = LICENSE
url = https://github.com/onaio/duva
classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10

[options]
python_requires = >= 3.9
python_requires = >= 3.10
setup_requires = setuptools_scm
packages = find:
install_requires =
Expand Down
2 changes: 0 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
[tox]
envlist =
py38
py39
py310
lint

Expand Down

0 comments on commit 73d8bee

Please sign in to comment.