diff --git a/core/Cargo.toml b/core/Cargo.toml index d4acf7d29..fb063ee47 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-core" -version = "0.2.0" +version = "0.3.0" authors = ["Eduardo Pinho "] description = "Efficient and practical core library for DICOM compliant systems" edition = "2018" diff --git a/dcmdump/Cargo.toml b/dcmdump/Cargo.toml index 31a57bff1..bbf3b6aa6 100644 --- a/dcmdump/Cargo.toml +++ b/dcmdump/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dcmdump" -version = "0.2.0" +version = "0.3.0" authors = ["Eduardo Pinho "] description = "A CLI tool for inspecting DICOM files" edition = "2018" @@ -17,7 +17,7 @@ repository = "Enet4/dicom-rs" default = ['dicom/inventory-registry', 'dicom/backtraces'] [dependencies] -dicom = { path = "../parent/", version = "0.2.0", default-features = false } +dicom = { path = "../parent/", version = "0.3.0", default-features = false } term_size = "0.3.2" itertools = "0.9.0" snafu = "0.6.8" diff --git a/dictionary-builder/Cargo.toml b/dictionary-builder/Cargo.toml index 483b02dac..3131d7f1f 100644 --- a/dictionary-builder/Cargo.toml +++ b/dictionary-builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-dictionary-builder" -version = "0.1.1" +version = "0.1.2" authors = ["Eduardo Pinho "] description = "A generator of DICOM data dictionaries from standard documentation" edition = "2018" diff --git a/dictionary-std/Cargo.toml b/dictionary-std/Cargo.toml index 1672b8d24..73758e810 100644 --- a/dictionary-std/Cargo.toml +++ b/dictionary-std/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-dictionary-std" -version = "0.2.0" +version = "0.3.0" authors = ["Eduardo Pinho "] description = "Standard DICOM attribute dictionary" edition = "2018" @@ -13,5 +13,5 @@ readme = "README.md" repository = "Enet4/dicom-rs" [dependencies] -dicom-core = { path = "../core", version = "0.2.0" } +dicom-core = { path = "../core", version = "0.3.0" } lazy_static = "1.2.0" diff --git a/encoding/Cargo.toml b/encoding/Cargo.toml index 8b7ae6a89..6e4628cff 100644 --- a/encoding/Cargo.toml +++ b/encoding/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-encoding" -version = "0.2.0" +version = "0.3.0" authors = ["Eduardo Pinho "] description = "DICOM encoding and decoding primitives" edition = "2018" @@ -18,8 +18,8 @@ default = [] inventory-registry = ['inventory'] [dependencies] -dicom-core = { path = "../core", version = "0.2.0" } -dicom-dictionary-std = { path = "../dictionary-std", version = "0.2.0" } +dicom-core = { path = "../core", version = "0.3.0" } +dicom-dictionary-std = { path = "../dictionary-std", version = "0.3.0" } encoding = "0.2.33" byteordered = "0.5.0" inventory = { version = "0.1.4", optional = true } diff --git a/object/Cargo.toml b/object/Cargo.toml index e46aa475e..18ce5e543 100644 --- a/object/Cargo.toml +++ b/object/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-object" -version = "0.2.0" +version = "0.3.0" authors = ["Eduardo Pinho "] edition = "2018" license = "MIT OR Apache-2.0" @@ -18,11 +18,11 @@ inventory-registry = ['dicom-encoding/inventory-registry', 'dicom-transfer-synta backtraces = ['snafu/backtraces'] [dependencies] -dicom-core = { path = "../core", version = "0.2.0" } -dicom-encoding = { path = "../encoding", version = "0.2.0" } -dicom-parser = { path = "../parser", version = "0.2.0" } -dicom-dictionary-std = { path = "../dictionary-std", version = "0.2.0" } -dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.2.0" } +dicom-core = { path = "../core", version = "0.3.0" } +dicom-encoding = { path = "../encoding", version = "0.3.0" } +dicom-parser = { path = "../parser", version = "0.3.0" } +dicom-dictionary-std = { path = "../dictionary-std", version = "0.3.0" } +dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.3.0" } itertools = "0.9.0" byteordered = "0.5.0" smallvec = "1.0.0" diff --git a/parent/Cargo.toml b/parent/Cargo.toml index 8b1a989b2..a5f408cc6 100644 --- a/parent/Cargo.toml +++ b/parent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom" -version = "0.2.0" +version = "0.3.0" authors = ["Eduardo Pinho "] description = "A pure Rust implementation of the DICOM standard" edition = "2018" @@ -17,9 +17,9 @@ inventory-registry = ['dicom-encoding/inventory-registry', 'dicom-transfer-synta backtraces = ['dicom-object/backtraces'] [dependencies] -dicom-core = { path = "../core", version = "0.2.0" } -dicom-dictionary-std = { path = "../dictionary-std", version = "0.2.0" } -dicom-encoding = { path = "../encoding", version = "0.2.0" } -dicom-parser = { path = "../parser", version = "0.2.0" } -dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.2.0" } -dicom-object = { path = "../object", version = "0.2.0", default-features = false } +dicom-core = { path = "../core", version = "0.3.0" } +dicom-dictionary-std = { path = "../dictionary-std", version = "0.3.0" } +dicom-encoding = { path = "../encoding", version = "0.3.0" } +dicom-parser = { path = "../parser", version = "0.3.0" } +dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.3.0" } +dicom-object = { path = "../object", version = "0.3.0", default-features = false } diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 248c1b62d..e97734bf9 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-parser" -version = "0.2.0" +version = "0.3.0" authors = ["Eduardo Pinho "] description = "A middle-level parser and printer of DICOM data sets" edition = "2018" @@ -14,9 +14,9 @@ readme = "README.md" repository = "Enet4/dicom-rs" [dependencies] -dicom-core = { path = "../core", version = "0.2.0" } -dicom-encoding = { path = "../encoding", version = "0.2.0" } +dicom-core = { path = "../core", version = "0.3.0" } +dicom-encoding = { path = "../encoding", version = "0.3.0" } chrono = "0.4.6" -dicom-dictionary-std = { path = "../dictionary-std/", version = "0.2.0" } +dicom-dictionary-std = { path = "../dictionary-std/", version = "0.3.0" } smallvec = "1.0.0" snafu = "0.6.8" diff --git a/scpproxy/Cargo.toml b/scpproxy/Cargo.toml index 296705516..9496120a1 100644 --- a/scpproxy/Cargo.toml +++ b/scpproxy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-scpproxy" -version = "0.1.0" +version = "0.2.0" authors = ["Eduardo Pinho ", "Paul Knopf "] description = "A proxy SCP server, for logging and diagnostics" edition = "2018" @@ -15,6 +15,6 @@ repository = "Enet4/dicom-rs" [dependencies] clap = "2.33.0" -dicom-ul = { path = "../ul/", version = "0.1.0" } -dicom-dictionary-std = { path = "../dictionary-std/", version = "0.2.0" } +dicom-ul = { path = "../ul/", version = "0.2.0" } +dicom-dictionary-std = { path = "../dictionary-std/", version = "0.3.0" } snafu = "0.6.8" diff --git a/transfer-syntax-registry/Cargo.toml b/transfer-syntax-registry/Cargo.toml index d2e56879e..2ee3fead5 100644 --- a/transfer-syntax-registry/Cargo.toml +++ b/transfer-syntax-registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-transfer-syntax-registry" -version = "0.2.0" +version = "0.3.0" authors = ["Eduardo Pinho "] description = "A registry of DICOM transfer syntaxes" edition = "2018" @@ -17,8 +17,8 @@ default = [] inventory-registry = ['dicom-encoding/inventory-registry', 'inventory'] [dependencies] -dicom-core = { path = "../core", version = "0.2.0" } -dicom-encoding = { path = "../encoding", version = "0.2.0" } +dicom-core = { path = "../core", version = "0.3.0" } +dicom-encoding = { path = "../encoding", version = "0.3.0" } lazy_static = "1.2.0" encoding = "0.2.33" byteordered = "0.5.0" diff --git a/ul/Cargo.toml b/ul/Cargo.toml index 36e528cfc..1140c6ded 100644 --- a/ul/Cargo.toml +++ b/ul/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-ul" -version = "0.1.0" +version = "0.2.0" authors = ["Eduardo Pinho ", "Paul Knopf "] description = "Types and methods for interacting with the DICOM Upper Layer Protocol" edition = "2018" @@ -15,7 +15,7 @@ repository = "Enet4/dicom-rs" [dependencies] byteordered = "0.5.0" -dicom-encoding = { path = "../encoding/", version = "0.2.0" } +dicom-encoding = { path = "../encoding/", version = "0.3.0" } snafu = "0.6.8" [dev-dependencies]