From 8af7e2904d90fece13e007ccc0bb25f558905b1c Mon Sep 17 00:00:00 2001 From: Eduardo Pinho Date: Thu, 3 Feb 2022 10:55:25 +0000 Subject: [PATCH] Bump to prerelease version 0.5.0-rc.2 core: 0.5.0-rc.2 dictionary-std: 0.5.0-rc.2 encoding: 0.5.0-rc.2 parser: 0.5.0-rc.2 transfer-syntax-registry: 0.5.0-rc.2 object: 0.5.0-rc.2 dump: 0.5.0-rc.2 dcmdump: 0.5.0-rc.2 ul: 0.4.0-rc.2 scpproxy: 0.4.0-rc.2 echoscu: 0.2.0-rc.2 storescu: 0.2.0-rc.2 pixeldata: 0.1.0-rc.2 parent: 0.5.0-rc.2 dictionary-builder: 0.3.0-rc.2 --- core/Cargo.toml | 2 +- dcmdump/Cargo.toml | 6 +++--- dictionary-builder/Cargo.toml | 2 +- dictionary-std/Cargo.toml | 4 ++-- dump/Cargo.toml | 4 ++-- echoscu/Cargo.toml | 6 +++--- encoding/Cargo.toml | 6 +++--- object/Cargo.toml | 12 ++++++------ parent/Cargo.toml | 18 +++++++++--------- parser/Cargo.toml | 8 ++++---- pixeldata/Cargo.toml | 12 ++++++------ scpproxy/Cargo.toml | 6 +++--- storescu/Cargo.toml | 6 +++--- transfer-syntax-registry/Cargo.toml | 6 +++--- ul/Cargo.toml | 6 +++--- 15 files changed, 52 insertions(+), 52 deletions(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index c84cadff3..a9a377578 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-core" -version = "0.5.0-rc.1" +version = "0.5.0-rc.2" 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 c9a74391e..db6317aa7 100644 --- a/dcmdump/Cargo.toml +++ b/dcmdump/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dcmdump" -version = "0.5.0-rc.1" +version = "0.5.0-rc.2" authors = ["Eduardo Pinho "] description = "(DEPRECATED) A CLI tool for inspecting DICOM files" edition = "2018" @@ -14,8 +14,8 @@ readme = "README.md" default = ['dicom/inventory-registry', 'dicom/backtraces'] [dependencies] -dicom-dump = { path = "../dump", version = "0.5.0-rc.1" } -dicom = { path = "../parent/", version = "0.5.0-rc.1", default-features = false } +dicom-dump = { path = "../dump", version = "0.5.0-rc.2" } +dicom = { path = "../parent/", version = "0.5.0-rc.2", default-features = false } term_size = "0.3.2" itertools = "0.10" snafu = "0.7.0" diff --git a/dictionary-builder/Cargo.toml b/dictionary-builder/Cargo.toml index 04a9140e9..1f900c037 100644 --- a/dictionary-builder/Cargo.toml +++ b/dictionary-builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-dictionary-builder" -version = "0.3.0-rc.1" +version = "0.3.0-rc.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 e4a89f36e..f5c636e70 100644 --- a/dictionary-std/Cargo.toml +++ b/dictionary-std/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-dictionary-std" -version = "0.5.0-rc.1" +version = "0.5.0-rc.2" authors = ["Eduardo Pinho "] description = "Standard DICOM attribute dictionary" edition = "2018" @@ -10,5 +10,5 @@ keywords = ["dicom", "dictionary"] readme = "README.md" [dependencies] -dicom-core = { path = "../core", version = "0.5.0-rc.1" } +dicom-core = { path = "../core", version = "0.5.0-rc.2" } lazy_static = "1.2.0" diff --git a/dump/Cargo.toml b/dump/Cargo.toml index 3381f2217..8ccb66a9b 100644 --- a/dump/Cargo.toml +++ b/dump/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-dump" -version = "0.5.0-rc.1" +version = "0.5.0-rc.2" authors = ["Eduardo Pinho "] description = "A CLI tool for inspecting DICOM files" edition = "2018" @@ -22,7 +22,7 @@ path = "src/main.rs" default = ['dicom/inventory-registry', 'dicom/backtraces'] [dependencies] -dicom = { path = "../parent/", version = "0.5.0-rc.1", default-features = false } +dicom = { path = "../parent/", version = "0.5.0-rc.2", default-features = false } term_size = "0.3.2" itertools = "0.10" snafu = "0.7.0" diff --git a/echoscu/Cargo.toml b/echoscu/Cargo.toml index 4d3c7e384..6b87e3f27 100644 --- a/echoscu/Cargo.toml +++ b/echoscu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-echoscu" -version = "0.2.0-rc.1" +version = "0.2.0-rc.2" authors = ["Eduardo Pinho "] edition = "2018" license = "MIT OR Apache-2.0" @@ -12,6 +12,6 @@ readme = "README.md" [dependencies] structopt = "0.3.21" -dicom-ul = { path = "../ul", version = "0.4.0-rc.1" } -dicom = { path = "../parent", version = "0.5.0-rc.1" } +dicom-ul = { path = "../ul", version = "0.4.0-rc.2" } +dicom = { path = "../parent", version = "0.5.0-rc.2" } smallvec = "1.6.1" diff --git a/encoding/Cargo.toml b/encoding/Cargo.toml index 934803633..4a54e8e25 100644 --- a/encoding/Cargo.toml +++ b/encoding/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-encoding" -version = "0.5.0-rc.1" +version = "0.5.0-rc.2" authors = ["Eduardo Pinho "] description = "DICOM encoding and decoding primitives" edition = "2018" @@ -15,8 +15,8 @@ default = [] inventory-registry = ['inventory'] [dependencies] -dicom-core = { path = "../core", version = "0.5.0-rc.1" } -dicom-dictionary-std = { path = "../dictionary-std", version = "0.5.0-rc.1" } +dicom-core = { path = "../core", version = "0.5.0-rc.2" } +dicom-dictionary-std = { path = "../dictionary-std", version = "0.5.0-rc.2" } encoding = "0.2.33" byteordered = "0.6" inventory = { version = "0.2.2", optional = true } diff --git a/object/Cargo.toml b/object/Cargo.toml index b7236f68f..cbf41aa95 100644 --- a/object/Cargo.toml +++ b/object/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-object" -version = "0.5.0-rc.1" +version = "0.5.0-rc.2" authors = ["Eduardo Pinho "] edition = "2018" license = "MIT OR Apache-2.0" @@ -15,11 +15,11 @@ inventory-registry = ['dicom-encoding/inventory-registry', 'dicom-transfer-synta backtraces = ['snafu/backtraces'] [dependencies] -dicom-core = { path = "../core", version = "0.5.0-rc.1" } -dicom-encoding = { path = "../encoding", version = "0.5.0-rc.1" } -dicom-parser = { path = "../parser", version = "0.5.0-rc.1" } -dicom-dictionary-std = { path = "../dictionary-std", version = "0.5.0-rc.1" } -dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.5.0-rc.1" } +dicom-core = { path = "../core", version = "0.5.0-rc.2" } +dicom-encoding = { path = "../encoding", version = "0.5.0-rc.2" } +dicom-parser = { path = "../parser", version = "0.5.0-rc.2" } +dicom-dictionary-std = { path = "../dictionary-std", version = "0.5.0-rc.2" } +dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.5.0-rc.2" } itertools = "0.10" byteordered = "0.6" smallvec = "1.6.1" diff --git a/parent/Cargo.toml b/parent/Cargo.toml index 0799af0e6..2a5fcda9f 100644 --- a/parent/Cargo.toml +++ b/parent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom" -version = "0.5.0-rc.1" +version = "0.5.0-rc.2" authors = ["Eduardo Pinho "] description = "A pure Rust implementation of the DICOM standard" edition = "2018" @@ -19,11 +19,11 @@ ul = ['dicom-ul'] pixeldata = ['dicom-pixeldata'] [dependencies] -dicom-core = { path = "../core", version = "0.5.0-rc.1" } -dicom-dictionary-std = { path = "../dictionary-std", version = "0.5.0-rc.1" } -dicom-encoding = { path = "../encoding", version = "0.5.0-rc.1" } -dicom-parser = { path = "../parser", version = "0.5.0-rc.1" } -dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.5.0-rc.1" } -dicom-object = { path = "../object", version = "0.5.0-rc.1", default-features = false } -dicom-ul = { optional = true, path = "../ul", version = "0.4.0-rc.1" } -dicom-pixeldata = { optional = true, path = "../pixeldata", version = "0.1.0-rc.1" } +dicom-core = { path = "../core", version = "0.5.0-rc.2" } +dicom-dictionary-std = { path = "../dictionary-std", version = "0.5.0-rc.2" } +dicom-encoding = { path = "../encoding", version = "0.5.0-rc.2" } +dicom-parser = { path = "../parser", version = "0.5.0-rc.2" } +dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.5.0-rc.2" } +dicom-object = { path = "../object", version = "0.5.0-rc.2", default-features = false } +dicom-ul = { optional = true, path = "../ul", version = "0.4.0-rc.2" } +dicom-pixeldata = { optional = true, path = "../pixeldata", version = "0.1.0-rc.2" } diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 409b3a1d6..a54a76267 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-parser" -version = "0.5.0-rc.1" +version = "0.5.0-rc.2" authors = ["Eduardo Pinho "] description = "A middle-level parser and printer of DICOM data sets" edition = "2018" @@ -11,9 +11,9 @@ keywords = ["dicom", "parser"] readme = "README.md" [dependencies] -dicom-core = { path = "../core", version = "0.5.0-rc.1" } -dicom-encoding = { path = "../encoding", version = "0.5.0-rc.1" } +dicom-core = { path = "../core", version = "0.5.0-rc.2" } +dicom-encoding = { path = "../encoding", version = "0.5.0-rc.2" } chrono = "0.4.6" -dicom-dictionary-std = { path = "../dictionary-std/", version = "0.5.0-rc.1" } +dicom-dictionary-std = { path = "../dictionary-std/", version = "0.5.0-rc.2" } smallvec = "1.6.1" snafu = "0.7.0" diff --git a/pixeldata/Cargo.toml b/pixeldata/Cargo.toml index e9e2b84f0..a68f90dba 100644 --- a/pixeldata/Cargo.toml +++ b/pixeldata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-pixeldata" -version = "0.1.0-rc.1" +version = "0.1.0-rc.2" authors = ["Eduardo Pinho ", "Peter Evers "] edition = "2018" license = "MIT OR Apache-2.0" @@ -11,11 +11,11 @@ keywords = ["dicom"] readme = "README.md" [dependencies] -dicom-object = { path = "../object", version = "0.5.0-rc.1" } -dicom-core = { path = "../core", version = "0.5.0-rc.1" } -dicom-encoding = { path = "../encoding", version = "0.5.0-rc.1" } -dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.5.0-rc.1" } -dicom-dictionary-std = { path = "../dictionary-std", version = "0.5.0-rc.1" } +dicom-object = { path = "../object", version = "0.5.0-rc.2" } +dicom-core = { path = "../core", version = "0.5.0-rc.2" } +dicom-encoding = { path = "../encoding", version = "0.5.0-rc.2" } +dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.5.0-rc.2" } +dicom-dictionary-std = { path = "../dictionary-std", version = "0.5.0-rc.2" } snafu = "0.7.0" byteorder = "1.4.3" image = "0.23.14" diff --git a/scpproxy/Cargo.toml b/scpproxy/Cargo.toml index 7304c7312..90ab55729 100644 --- a/scpproxy/Cargo.toml +++ b/scpproxy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-scpproxy" -version = "0.4.0-rc.1" +version = "0.4.0-rc.2" authors = ["Eduardo Pinho ", "Paul Knopf "] description = "A proxy SCP server, for logging and diagnostics" edition = "2018" @@ -12,6 +12,6 @@ readme = "README.md" [dependencies] clap = "2.33.0" -dicom-ul = { path = "../ul/", version = "0.4.0-rc.1" } -dicom-dictionary-std = { path = "../dictionary-std/", version = "0.5.0-rc.1" } +dicom-ul = { path = "../ul/", version = "0.4.0-rc.2" } +dicom-dictionary-std = { path = "../dictionary-std/", version = "0.5.0-rc.2" } snafu = "0.7.0" diff --git a/storescu/Cargo.toml b/storescu/Cargo.toml index 6146f97a5..332582e39 100644 --- a/storescu/Cargo.toml +++ b/storescu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-storescu" -version = "0.2.0-rc.1" +version = "0.2.0-rc.2" authors = ["Eduardo Pinho "] edition = "2018" license = "MIT OR Apache-2.0" @@ -11,8 +11,8 @@ keywords = ["dicom"] readme = "README.md" [dependencies] -dicom-ul = { path = '../ul', version = "0.4.0-rc.1" } -dicom = { path = '../parent', version = "0.5.0-rc.1" } +dicom-ul = { path = '../ul', version = "0.4.0-rc.2" } +dicom = { path = '../parent', version = "0.5.0-rc.2" } structopt = "0.3.21" walkdir = "2.3.2" indicatif = "0.16.2" diff --git a/transfer-syntax-registry/Cargo.toml b/transfer-syntax-registry/Cargo.toml index bf028ebd3..571f1051c 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.5.0-rc.1" +version = "0.5.0-rc.2" authors = ["Eduardo Pinho "] description = "A registry of DICOM transfer syntaxes" edition = "2018" @@ -14,8 +14,8 @@ default = [] inventory-registry = ['dicom-encoding/inventory-registry', 'inventory'] [dependencies] -dicom-core = { path = "../core", version = "0.5.0-rc.1" } -dicom-encoding = { path = "../encoding", version = "0.5.0-rc.1" } +dicom-core = { path = "../core", version = "0.5.0-rc.2" } +dicom-encoding = { path = "../encoding", version = "0.5.0-rc.2" } lazy_static = "1.2.0" encoding = "0.2.33" byteordered = "0.6" diff --git a/ul/Cargo.toml b/ul/Cargo.toml index dd12acfde..a914a0a37 100644 --- a/ul/Cargo.toml +++ b/ul/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dicom-ul" -version = "0.4.0-rc.1" +version = "0.4.0-rc.2" authors = ["Eduardo Pinho ", "Paul Knopf "] description = "Types and methods for interacting with the DICOM Upper Layer Protocol" edition = "2018" @@ -12,8 +12,8 @@ readme = "README.md" [dependencies] byteordered = "0.6" -dicom-encoding = { path = "../encoding/", version = "0.5.0-rc.1" } -dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry/", version = "0.5.0-rc.1" } +dicom-encoding = { path = "../encoding/", version = "0.5.0-rc.2" } +dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry/", version = "0.5.0-rc.2" } snafu = "0.7.0" [dev-dependencies]