Skip to content

Commit

Permalink
release: v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FlixCoder committed Apr 1, 2023
1 parent 614bdac commit 5f97633
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 17 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

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

## [0.3.0] - 2023-04-01

### Bug Fixes

- Integer64 is actually a JSON String
- Add values for RelatedArtifactTypeExpanded
- [**breaking**] Choice field extensions include the value type in the field name
- Specimen.combined actually links to SpecimenCombined, not PublicationStatus

### Features

- Add FHIR R5 files
- Generate R5 models

### Refactor

- Use own FHIR models for code generation

## [0.2.0] - 2023-03-26

### Features
Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

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

5 changes: 1 addition & 4 deletions crates/fhir-model/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@ license = "MIT"
name = "fhir-model"
readme = "README.md"
repository = "https://github.com/FlixCoder/fhir-sdk"
version = "0.2.0"

[package.metadata.docs.rs]
all-features = true
version = "0.3.0"

[features]
default = ["r5"]
Expand Down
7 changes: 2 additions & 5 deletions crates/fhir-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,12 @@ license = "MIT"
name = "fhir-sdk"
readme = "README.md"
repository = "https://github.com/FlixCoder/fhir-sdk"
version = "0.2.0"

[package.metadata.docs.rs]
all-features = true
version = "0.3.0"

[features]
default = ["r5"]
r4b = ["fhir-model/r4b"]
r5 = ["fhir-model/r5"]

[dependencies]
fhir-model = {path = "../fhir-model", version = "0.2.0"}
fhir-model = {path = "../fhir-model", version = "0.3.0"}

0 comments on commit 5f97633

Please sign in to comment.