Skip to content

Commit

Permalink
release: v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Flix committed Aug 31, 2023
1 parent 2d70986 commit ff3bd7e
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 18 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,33 @@

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

## [0.4.0] - 2023-08-31

### Bug Fixes

- Improve code generation using cleaner URL usage
- Do not override headers with default headers
- Adjust wrong LinkRelationTypes definitions
- Implement Copy for ResourceType
- Implement Display for ResourceType

### Documentation

- Improve generated doc comments

### Features

- Implement basic REST client
- Implement paging
- Implement search with typed helpers

### Miscellaneous Tasks

- Fix new clippy lints
- Add expansions for R4B and remove unneeded definitions
- Update typed-builder and fhir-sdk dependencies
- Update README

## [0.3.0] - 2023-04-01

### Bug Fixes
Expand Down
28 changes: 14 additions & 14 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.3.0"
version = "0.4.0"

[features]
default = ["r5"]
Expand All @@ -20,7 +20,7 @@ r5 = []

[dependencies]
serde = {version = "1.0.158", features = ["derive"]}
typed-builder = "0.15.2"
typed-builder = "0.16.0"

[dev-dependencies]
assert-json-diff = "2.0.2"
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.3.0"
version = "0.4.0"

[features]
client = ["dep:async-trait", "dep:futures", "dep:reqwest", "dep:serde", "dep:serde_json", "dep:thiserror", "dep:tokio-retry"]
Expand All @@ -20,7 +20,7 @@ r5 = ["fhir-model/r5"]

[dependencies]
async-trait = {version = "0.1.68", optional = true}
fhir-model = {path = "../fhir-model", version = "0.3.0"}
fhir-model = {path = "../fhir-model", version = "0.4.0"}
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 ff3bd7e

Please sign in to comment.