From acf2c627460c8d2f2880e901ec88bb0cc1ef9fcf Mon Sep 17 00:00:00 2001 From: Bryan Larson Date: Thu, 7 Nov 2024 22:46:47 +0000 Subject: [PATCH] chore(release): 1.0.0 [skip ci] # 1.0.0 (2024-11-07) ### Bug Fixes * **deployment:** Added missing buildspec for CodeBuild ([273fae0](https://github.com/hms-dbmi/dbmisvc-starter/commit/273fae04569bc2c2f049e5b922a34c36f046e31a)) * **environment:** Fixed PYTHONPATH for VSCode ([17f9dc9](https://github.com/hms-dbmi/dbmisvc-starter/commit/17f9dc9ece4be5cc2d52c1d34696b97c511380d6)) * **requirements:** Updated requirements; updated base image ([95d9388](https://github.com/hms-dbmi/dbmisvc-starter/commit/95d9388e26ab1c6ccc7d736ad448d0d288a35d68)) * **settings:** Fixed how settings are determined ([a721858](https://github.com/hms-dbmi/dbmisvc-starter/commit/a7218581c5aeee35d0286e5f35ac9f52fa47871d)) * **setup:** Fixed version lookup in setup.py ([de1eb22](https://github.com/hms-dbmi/dbmisvc-starter/commit/de1eb22b260788d5d95d2c496941addb25c1a47c)) ### Features * **deployment:** Added a command to create imagedefinitions.json file in buildspec for ECS CodeDeploy action ([057fa25](https://github.com/hms-dbmi/dbmisvc-starter/commit/057fa2547886989672aac33bbadef106c3b8a8f6)) * **healthcheck:** Added healthcheck app as required for deployments; added django-dbmi-client ([5e0daf4](https://github.com/hms-dbmi/dbmisvc-starter/commit/5e0daf4e671b161bd9ea5750f3325c287998a35c)) * **project:** Updated docker image; added project details ([770ecdb](https://github.com/hms-dbmi/dbmisvc-starter/commit/770ecdb48a72284385ca38d6db68876517284fb7)) * **starter:** Initial commit ([6ef4b5c](https://github.com/hms-dbmi/dbmisvc-starter/commit/6ef4b5cf9b61876fd22b207f31c70037182e9e82)) --- CHANGELOG.md | 18 ++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..4b42563 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ +# 1.0.0 (2024-11-07) + + +### Bug Fixes + +* **deployment:** Added missing buildspec for CodeBuild ([273fae0](https://github.com/hms-dbmi/dbmisvc-starter/commit/273fae04569bc2c2f049e5b922a34c36f046e31a)) +* **environment:** Fixed PYTHONPATH for VSCode ([17f9dc9](https://github.com/hms-dbmi/dbmisvc-starter/commit/17f9dc9ece4be5cc2d52c1d34696b97c511380d6)) +* **requirements:** Updated requirements; updated base image ([95d9388](https://github.com/hms-dbmi/dbmisvc-starter/commit/95d9388e26ab1c6ccc7d736ad448d0d288a35d68)) +* **settings:** Fixed how settings are determined ([a721858](https://github.com/hms-dbmi/dbmisvc-starter/commit/a7218581c5aeee35d0286e5f35ac9f52fa47871d)) +* **setup:** Fixed version lookup in setup.py ([de1eb22](https://github.com/hms-dbmi/dbmisvc-starter/commit/de1eb22b260788d5d95d2c496941addb25c1a47c)) + + +### Features + +* **deployment:** Added a command to create imagedefinitions.json file in buildspec for ECS CodeDeploy action ([057fa25](https://github.com/hms-dbmi/dbmisvc-starter/commit/057fa2547886989672aac33bbadef106c3b8a8f6)) +* **healthcheck:** Added healthcheck app as required for deployments; added django-dbmi-client ([5e0daf4](https://github.com/hms-dbmi/dbmisvc-starter/commit/5e0daf4e671b161bd9ea5750f3325c287998a35c)) +* **project:** Updated docker image; added project details ([770ecdb](https://github.com/hms-dbmi/dbmisvc-starter/commit/770ecdb48a72284385ca38d6db68876517284fb7)) +* **starter:** Initial commit ([6ef4b5c](https://github.com/hms-dbmi/dbmisvc-starter/commit/6ef4b5cf9b61876fd22b207f31c70037182e9e82)) diff --git a/pyproject.toml b/pyproject.toml index 6a1f975..e6598e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dbmisvc-starter" -version = "0.1.0" +version = "1.0.0" description = "A starter for a DBMISVC-style application" readme = "README.md" requires-python = ">=3.12"