diff --git a/CHANGELOG.md b/CHANGELOG.md index 448b91d..0a6f779 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.2.0](https://github.com/Isvane/artemis/compare/v0.1.0...v0.2.0) (2026-06-15) + + +### Features + +* add CRUD routes for projects and nested jobs ([ac4e241](https://github.com/Isvane/artemis/commit/ac4e241e686dd8962a9f4998cfdd6b545a251ae8)) +* add project and job models with alembic migration ([cfd0797](https://github.com/Isvane/artemis/commit/cfd079725e7eca83dccc6c68789698775502925d)) +* add pydantic schemas for project and job models ([e9262f1](https://github.com/Isvane/artemis/commit/e9262f195bf1d9b29240252741e055cf250e86fb)) +* add pydantic schemas for user ([39955e9](https://github.com/Isvane/artemis/commit/39955e9c0472e282d80b143222ca83a321ce1d46)) +* add user model and establish 1-to-many relationship with projects ([465b261](https://github.com/Isvane/artemis/commit/465b261c57e9cbee947e6ff69dc0c80ce8083fcc)) +* integrate Prometheus and Grafana for application monitoring ([e3f20ae](https://github.com/Isvane/artemis/commit/e3f20ae56d2d066f1bc1cae1417d8a3c12435e99)) + ## 0.1.0 (2026-06-07) diff --git a/pyproject.toml b/pyproject.toml index bf7da90..53e0b47 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "artemis" -version = "0.1.0" +version = "0.2.0" requires-python = ">=3.14" dependencies = [ "alembic>=1.18.4",