Skip to content

Commit c55191f

Browse files
author
Flix
committed
release: v0.6.0
1 parent 49591e7 commit c55191f

File tree

4 files changed

+28
-6
lines changed

4 files changed

+28
-6
lines changed

CHANGELOG.md

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

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

5+
## [0.6.0] - 2023-09-16
6+
7+
### Bug Fixes
8+
9+
- Do not filter out codes like HTTPVerb
10+
- Go deeper into the codes, there are more layers
11+
12+
### Features
13+
14+
- Implement batch/transaction requests
15+
- Implement Encounter $everything operation
16+
- Implement Patient $everything and $match
17+
- Implement PATCH
18+
19+
### Refactor
20+
21+
- Change the way references are parsed
22+
23+
### Testing
24+
25+
- Refactor to use batches
26+
527
## [0.5.0] - 2023-09-08
628

729
### Bug Fixes

Cargo.lock

Lines changed: 3 additions & 3 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.5.0"
14+
version = "0.6.0"
1515

1616
[features]
1717
default = ["r5", "builders"]

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.5.0"
13+
version = "0.6.0"
1414

1515
[features]
1616
default = ["r5", "builders", "client", "docs"]
@@ -22,7 +22,7 @@ docs = []
2222

2323
[dependencies]
2424
async-trait = {version = "0.1.68", optional = true}
25-
fhir-model = {path = "../fhir-model", version = "0.5.0", default-features = false}
25+
fhir-model = {path = "../fhir-model", version = "0.6.0", default-features = false}
2626
futures = {version = "0.3.28", optional = true}
2727
reqwest = {version = "0.11.16", features = ["json"], optional = true}
2828
serde = {version = "1.0.159", optional = true}

0 commit comments

Comments
 (0)