-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added change log and additional project urls. Bump version for release.
- Loading branch information
1 parent
075ae66
commit 79a541c
Showing
2 changed files
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 <[email protected]>"] | ||
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" | ||
|