Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

altered default date format for databases, and bumped version #32

Merged
merged 3 commits into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 - [2024-07-29]

### `Fixed`

- 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

### `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
Expand Down
2 changes: 1 addition & 1 deletion locidex/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion locidex/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.0'
__version__ = '0.2.1'
Loading