Skip to content

Commit dc6683c

Browse files
author
Flix
committed
release: v0.11.0
1 parent f14d7d4 commit dc6683c

File tree

4 files changed

+30
-14
lines changed

4 files changed

+30
-14
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

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

5+
## [0.11.0] - 2024-04-14
6+
7+
### Documentation
8+
9+
- Add example for JSON deserialization
10+
11+
### Features
12+
13+
- Add and implement AnyResourceWrite for Resource
14+
- Add REST call `history`
15+
16+
### Miscellaneous Tasks
17+
18+
- Bump dependencies
19+
- Bump reqwest to 0.12, going to hyper 1.0
20+
521
## [0.10.0] - 2024-02-29
622

723
### Bug Fixes

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/fhir-model/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "MIT"
1111
name = "fhir-model"
1212
readme = "README.md"
1313
repository = "https://github.com/FlixCoder/fhir-sdk"
14-
version = "0.9.0"
14+
version = "0.10.0"
1515

1616
[lints]
1717
workspace = true

crates/fhir-sdk/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = "MIT"
1010
name = "fhir-sdk"
1111
readme = "README.md"
1212
repository = "https://github.com/FlixCoder/fhir-sdk"
13-
version = "0.10.0"
13+
version = "0.11.0"
1414

1515
[lints]
1616
workspace = true
@@ -37,7 +37,7 @@ docs = []
3737

3838
[dependencies]
3939
async-trait = {version = "0.1.68", optional = true}
40-
fhir-model = {path = "../fhir-model", version = "0.9.0", default-features = false}
40+
fhir-model = {path = "../fhir-model", version = "0.10.0", default-features = false}
4141
futures = {version = "0.3.28", optional = true}
4242
reqwest = {version = "0.12.2", features = ["json"], optional = true}
4343
serde = {version = "1.0.159", optional = true}

0 commit comments

Comments
 (0)