From 110112d643fa78bae8cfe8ef6cec11ac12cc2708 Mon Sep 17 00:00:00 2001 From: Flix Date: Sun, 26 Mar 2023 16:01:16 +0200 Subject: [PATCH] release: v0.2.0 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ Cargo.lock | 4 ++-- crates/fhir-model/Cargo.toml | 2 +- crates/fhir-sdk/Cargo.toml | 4 ++-- 4 files changed, 29 insertions(+), 5 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..229bd5e7 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,24 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [0.2.0] - 2023-03-26 + +### Features + +- Implement code conversion to Coding and CodeableConcept +- Implement base traits for all resources +- Implement IdentifiableResource +- Extend the IdentifiableResource trait + +### Miscellaneous Tasks + +- Add resolver = 2 + +## [0.1.0] - 2023-03-24 + +### Features + +- Initial implementation + + diff --git a/Cargo.lock b/Cargo.lock index 07ea7220..0db7e491 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -39,7 +39,7 @@ dependencies = [ [[package]] name = "fhir-model" -version = "0.1.0" +version = "0.2.0" dependencies = [ "assert-json-diff", "serde", @@ -49,7 +49,7 @@ dependencies = [ [[package]] name = "fhir-sdk" -version = "0.1.0" +version = "0.2.0" dependencies = [ "fhir-model", ] diff --git a/crates/fhir-model/Cargo.toml b/crates/fhir-model/Cargo.toml index 3a7deaa0..f3ba77dc 100644 --- a/crates/fhir-model/Cargo.toml +++ b/crates/fhir-model/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT" name = "fhir-model" readme = "README.md" repository = "https://github.com/FlixCoder/fhir-sdk" -version = "0.1.0" +version = "0.2.0" [package.metadata.docs.rs] all-features = true diff --git a/crates/fhir-sdk/Cargo.toml b/crates/fhir-sdk/Cargo.toml index 59a5542f..183feece 100644 --- a/crates/fhir-sdk/Cargo.toml +++ b/crates/fhir-sdk/Cargo.toml @@ -10,7 +10,7 @@ license = "MIT" name = "fhir-sdk" readme = "README.md" repository = "https://github.com/FlixCoder/fhir-sdk" -version = "0.1.0" +version = "0.2.0" [package.metadata.docs.rs] all-features = true @@ -20,4 +20,4 @@ default = ["r4b"] r4b = ["fhir-model/r4b"] [dependencies] -fhir-model = {path = "../fhir-model", version = "0.1"} +fhir-model = {path = "../fhir-model", version = "0.2.0"}