diff --git a/CHANGELOG.md b/CHANGELOG.md index 48eb3bab..ce4dda17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ All notable changes to this project will be documented in this file. +## [0.11.0] - 2024-04-14 + +### Documentation + +- Add example for JSON deserialization + +### Features + +- Add and implement AnyResourceWrite for Resource +- Add REST call `history` + +### Miscellaneous Tasks + +- Bump dependencies +- Bump reqwest to 0.12, going to hyper 1.0 + ## [0.10.0] - 2024-02-29 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 68c567a1..858ff7d0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -392,33 +392,33 @@ checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" [[package]] name = "fhir-model" version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be3d7b692c0985bf650412f3cbf37637806fc325954434b96624fc46ef9e0b06" dependencies = [ - "assert-json-diff", - "base64 0.22.0", - "derive_builder", + "base64 0.21.7", "serde", - "serde_json", "time", ] [[package]] name = "fhir-model" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be3d7b692c0985bf650412f3cbf37637806fc325954434b96624fc46ef9e0b06" +version = "0.10.0" dependencies = [ - "base64 0.21.7", + "assert-json-diff", + "base64 0.22.0", + "derive_builder", "serde", + "serde_json", "time", ] [[package]] name = "fhir-sdk" -version = "0.10.0" +version = "0.11.0" dependencies = [ "async-trait", "eyre", - "fhir-model 0.9.0", + "fhir-model 0.10.0", "futures", "once_cell", "reqwest", @@ -557,7 +557,7 @@ version = "0.1.0" dependencies = [ "Inflector", "anyhow", - "fhir-model 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fhir-model 0.9.0", "once_cell", "prettyplease", "proc-macro2", diff --git a/crates/fhir-model/Cargo.toml b/crates/fhir-model/Cargo.toml index 7aab490d..1147c759 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.9.0" +version = "0.10.0" [lints] workspace = true diff --git a/crates/fhir-sdk/Cargo.toml b/crates/fhir-sdk/Cargo.toml index 2545fe63..1311f2cf 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.10.0" +version = "0.11.0" [lints] workspace = true @@ -37,7 +37,7 @@ docs = [] [dependencies] async-trait = {version = "0.1.68", optional = true} -fhir-model = {path = "../fhir-model", version = "0.9.0", default-features = false} +fhir-model = {path = "../fhir-model", version = "0.10.0", default-features = false} futures = {version = "0.3.28", optional = true} reqwest = {version = "0.12.2", features = ["json"], optional = true} serde = {version = "1.0.159", optional = true}