Skip to content

Commit

Permalink
release: v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Flix committed Sep 1, 2023
1 parent 134b648 commit 92d7362
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 6 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@

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

## [0.4.1] - 2023-09-01

### Bug Fixes

- Make everything compile with different features

### Features

- Add back search for all resources
- Allow to disable builders
- Implement getting the server's capabilities

### Miscellaneous Tasks

- Improve README

### Testing

- Use local test server

## [0.4.0] - 2023-08-31

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 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.4.0"
version = "0.4.1"

[features]
default = ["r5", "builders"]
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.4.0"
version = "0.4.1"

[features]
default = ["r5", "builders", "client"]
Expand All @@ -21,7 +21,7 @@ r5 = ["fhir-model/r5"]

[dependencies]
async-trait = {version = "0.1.68", optional = true}
fhir-model = {path = "../fhir-model", version = "0.4.0", default-features = false}
fhir-model = {path = "../fhir-model", version = "0.4.1", 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 92d7362

Please sign in to comment.