Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lschmierer committed Apr 16, 2023
1 parent d8b1a46 commit aa0fe0c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions fhirbolt-element/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fhirbolt-element"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["Lukas Schmierer <[email protected]>"]
description = "Internal element model library of the fhirbolt project"
Expand All @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
[dependencies]
indexmap = "1.9.2"

fhirbolt-shared = { version = "0.1.0", path = "../fhirbolt-shared" }
fhirbolt-shared = { version = "0.2.0", path = "../fhirbolt-shared" }

[dev-dependencies]
# used by doc-tests
Expand Down
4 changes: 2 additions & 2 deletions fhirbolt-model/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fhirbolt-model"
version = "0.1.3"
version = "0.2.0"
edition = "2021"
authors = ["Lukas Schmierer <[email protected]>"]
description = "Internal model library of the fhirbolt project"
Expand All @@ -16,4 +16,4 @@ r4 = []
r4b = []

[dependencies]
fhirbolt-shared = { version = "0.1.0", path = "../fhirbolt-shared" }
fhirbolt-shared = { version = "0.2.0", path = "../fhirbolt-shared" }
8 changes: 4 additions & 4 deletions fhirbolt-serde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fhirbolt-serde"
version = "0.1.3"
version = "0.2.0"
edition = "2021"
authors = ["Lukas Schmierer <[email protected]>"]
description = "Internal serde library of the fhirbolt project"
Expand All @@ -21,9 +21,9 @@ quick-xml = "0.25"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["arbitrary_precision"] }

fhirbolt-model = { version = "0.1.3", path = "../fhirbolt-model", optional = true }
fhirbolt-element = { version = "0.1.0", path = "../fhirbolt-element" }
fhirbolt-shared = { version = "0.1.0", path = "../fhirbolt-shared" }
fhirbolt-model = { version = "0.2.0", path = "../fhirbolt-model", optional = true }
fhirbolt-element = { version = "0.2.0", path = "../fhirbolt-element" }
fhirbolt-shared = { version = "0.2.0", path = "../fhirbolt-shared" }

[dev-dependencies]
# used by doc-tests
Expand Down
2 changes: 1 addition & 1 deletion fhirbolt-shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fhirbolt-shared"
version = "0.1.3"
version = "0.2.0"
edition = "2021"
authors = ["Lukas Schmierer <[email protected]>"]
description = "Internal shared library of the fhirbolt project"
Expand Down
10 changes: 5 additions & 5 deletions fhirbolt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fhirbolt"
version = "0.1.2"
version = "0.2.0"
edition = "2021"
authors = ["Lukas Schmierer <[email protected]>"]
description = "FHIR library"
Expand All @@ -18,7 +18,7 @@ r4 = ["fhirbolt-model/r4", "fhirbolt-serde/r4"]
r4b = ["fhirbolt-model/r4b", "fhirbolt-serde/r4b"]

[dependencies]
fhirbolt-model = { version = "0.1.0", path = "../fhirbolt-model", optional = true }
fhirbolt-element = { version = "0.1.0", path = "../fhirbolt-element" }
fhirbolt-serde = { version = "0.1.0", path = "../fhirbolt-serde" }
fhirbolt-shared = { version = "0.1.0", path = "../fhirbolt-shared" }
fhirbolt-model = { version = "0.2.0", path = "../fhirbolt-model", optional = true }
fhirbolt-element = { version = "0.2.0", path = "../fhirbolt-element" }
fhirbolt-serde = { version = "0.2.0", path = "../fhirbolt-serde" }
fhirbolt-shared = { version = "0.2.0", path = "../fhirbolt-shared" }

0 comments on commit aa0fe0c

Please sign in to comment.