From 73d8beef538238e43b06fe87a512273511d410e4 Mon Sep 17 00:00:00 2001 From: Ukang'a Dickson Date: Wed, 15 Jan 2025 11:09:56 +0300 Subject: [PATCH] Bump version to v0.2.0 --- RELEASE_NOTES.md | 7 +++++++ app/core/config.py | 2 +- setup.cfg | 8 ++++---- tox.ini | 2 -- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 6c8e791..64054fb 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.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: diff --git a/app/core/config.py b/app/core/config.py index a262854..2f2e623 100644 --- a/app/core/config.py +++ b/app/core/config.py @@ -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") diff --git a/setup.cfg b/setup.cfg index 7d48ccc..0a08436 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 = diff --git a/tox.ini b/tox.ini index ac58337..fcd2386 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,5 @@ [tox] envlist = - py38 - py39 py310 lint