From 79a541c826800914ae6e1b9c5cf207825047cc34 Mon Sep 17 00:00:00 2001 From: chaseastewart <153762074+chaseastewart@users.noreply.github.com> Date: Tue, 20 Feb 2024 00:57:35 -0600 Subject: [PATCH] Added change log and additional project urls. Bump version for release. --- CHANGES.md | 6 ++++++ pyproject.toml | 6 +++++- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 CHANGES.md diff --git a/CHANGES.md b/CHANGES.md new file mode 100644 index 0000000..4c87a27 --- /dev/null +++ b/CHANGES.md @@ -0,0 +1,6 @@ +# Python FHIR Converter Change Log + +## Version 0.22 +- `ResourceLoader` and `CachedChoiceLoader` are depreciated and will be removed in 0.1.0. Use `PackageLoader` and `CachingChoiceLoader` instead. +- Run tests on mac, windows and ubuntu. +- Now depends on [python-liquid](https://pypi.org/project/python-liquid/) = 1.11.0. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 2c65851..b435eb2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "python-fhir-converter" -version = "0.0.21" +version = "0.0.22" authors = ["Chase Stewart "] description = "Transformation utility to translate data formats into FHIR" readme = "README.md" @@ -32,6 +32,10 @@ packages = [ {include = "fhir_converter/py.typed"}, ] +[tool.poetry.urls] +"Change Log" = "https://github.com/chaseastewart/fhir-converter/blob/main/CHANGES.md" +"Issue Tracker" = "https://github.com/chaseastewart/fhir-converter/issues" + [tool.poetry.dependencies] python = "^3.8.1" python-liquid = "1.11.0"