Skip to content

Commit

Permalink
release: v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FlixCoder committed Jan 25, 2024
1 parent b43639f commit 42c678c
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [0.9.0] - 2024-01-25

### Features

- Add FHIR STU3 -- thanks @jarimayenburg

## [0.8.0] - 2024-01-14

### Features
Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/fhir-model/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license = "MIT"
name = "fhir-model"
readme = "README.md"
repository = "https://github.com/FlixCoder/fhir-sdk"
version = "0.7.0"
version = "0.8.0"

[lints]
workspace = true
Expand All @@ -25,7 +25,7 @@ r5 = []

[dependencies]
base64 = "0.21.3"
derive_builder = {version = "0.12.0", optional = true}
derive_builder = {version = "0.13.0", optional = true}
serde = {version = "1.0.158", features = ["derive"]}
time = { version = "0.3.27", features = [
"formatting",
Expand Down
6 changes: 3 additions & 3 deletions crates/fhir-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "MIT"
name = "fhir-sdk"
readme = "README.md"
repository = "https://github.com/FlixCoder/fhir-sdk"
version = "0.8.0"
version = "0.9.0"

[lints]
workspace = true
Expand All @@ -30,14 +30,14 @@ client = [
"dep:uuid",
]
builders = ["fhir-model/builders"]
stu3 = ["fhir-model/stu3"]
r4b = ["fhir-model/r4b"]
r5 = ["fhir-model/r5"]
stu3 = ["fhir-model/stu3"]
docs = []

[dependencies]
async-trait = {version = "0.1.68", optional = true}
fhir-model = {path = "../fhir-model", version = "0.7.0", default-features = false}
fhir-model = {path = "../fhir-model", version = "0.8.0", default-features = false}
futures = {version = "0.3.28", optional = true}
reqwest = {version = "0.11.16", features = ["json"], optional = true}
serde = {version = "1.0.159", optional = true}
Expand Down

0 comments on commit 42c678c

Please sign in to comment.