Skip to content

Commit

Permalink
release: v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Flix committed Apr 14, 2024
1 parent f14d7d4 commit dc6683c
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 14 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
22 changes: 11 additions & 11 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion 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.9.0"
version = "0.10.0"

[lints]
workspace = true
Expand Down
4 changes: 2 additions & 2 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.10.0"
version = "0.11.0"

[lints]
workspace = true
Expand All @@ -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}
Expand Down

0 comments on commit dc6683c

Please sign in to comment.