From 3afbd16880c9e70738fa73f7adfcedda59825983 Mon Sep 17 00:00:00 2001 From: Matthew Wells Date: Mon, 29 Jul 2024 10:58:32 -0500 Subject: [PATCH 1/3] altered default date format for databases, and bumped version --- CHANGELOG.md | 18 ++++++++++++++++++ locidex/build.py | 2 +- locidex/version.py | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9bd75e..629ae25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,24 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## v0.2.1 + +### `Fixed` + +- Changed default data format for database configs to year-month-day format + +## v0.2.0 + +### `Added` + +- Incorporated both unit tests and end-to-end tests for workflows + +- Introduced manifest module for management of multiple databases + +### `Fixed` + +- Reduced code coupling issue by removing incorporating dataclasses over dictionaries. Changes were made in a backwards compatible fashion. + ## v1.0dev - [date] Initial release of phac-nml/locidex diff --git a/locidex/build.py b/locidex/build.py index 75d4eed..adf3baf 100644 --- a/locidex/build.py +++ b/locidex/build.py @@ -157,7 +157,7 @@ def run(cmd_args=None): db_version =cmd_args.db_ver, db_desc=cmd_args.db_desc, db_author=cmd_args.author, - db_date=datetime.now().strftime("%Y/%d/%m"), + db_date=datetime.now().strftime("%Y-%m-%d"), ) run_params = vars(cmd_args) diff --git a/locidex/version.py b/locidex/version.py index 7fd229a..fc79d63 100644 --- a/locidex/version.py +++ b/locidex/version.py @@ -1 +1 @@ -__version__ = '0.2.0' +__version__ = '0.2.1' From 7df678fdc6fa082fea30d47f4ca2cdd6afb26828 Mon Sep 17 00:00:00 2001 From: Matthew Wells Date: Mon, 29 Jul 2024 11:00:36 -0500 Subject: [PATCH 2/3] added pr number to changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 629ae25..d365801 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### `Fixed` -- Changed default data format for database configs to year-month-day format +- Changed default data format for database configs to year-month-day format [PR 32](https://github.com/phac-nml/locidex/pull/32/commits/3afbd16880c9e70738fa73f7adfcedda59825983) ## v0.2.0 From 367fabc887535f87e99da772dbffcd6da0c7db2b Mon Sep 17 00:00:00 2001 From: Matthew Wells Date: Mon, 29 Jul 2024 11:01:54 -0500 Subject: [PATCH 3/3] added date to changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d365801..a2d5775 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## v0.2.1 +## v0.2.1 - [2024-07-29] ### `Fixed`