Skip to content

Commit

Permalink
Bump to prerelease version 0.5.0-rc.2
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Enet4 committed Feb 3, 2022
1 parent 135f127 commit 8af7e29
Show file tree
Hide file tree
Showing 15 changed files with 52 additions and 52 deletions.
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-core"
version = "0.5.0-rc.1"
version = "0.5.0-rc.2"
authors = ["Eduardo Pinho <[email protected]>"]
description = "Efficient and practical core library for DICOM compliant systems"
edition = "2018"
Expand Down
6 changes: 3 additions & 3 deletions dcmdump/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dcmdump"
version = "0.5.0-rc.1"
version = "0.5.0-rc.2"
authors = ["Eduardo Pinho <[email protected]>"]
description = "(DEPRECATED) A CLI tool for inspecting DICOM files"
edition = "2018"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion dictionary-builder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-dictionary-builder"
version = "0.3.0-rc.1"
version = "0.3.0-rc.2"
authors = ["Eduardo Pinho <[email protected]>"]
description = "A generator of DICOM data dictionaries from standard documentation"
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions dictionary-std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-dictionary-std"
version = "0.5.0-rc.1"
version = "0.5.0-rc.2"
authors = ["Eduardo Pinho <[email protected]>"]
description = "Standard DICOM attribute dictionary"
edition = "2018"
Expand All @@ -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"
4 changes: 2 additions & 2 deletions dump/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-dump"
version = "0.5.0-rc.1"
version = "0.5.0-rc.2"
authors = ["Eduardo Pinho <[email protected]>"]
description = "A CLI tool for inspecting DICOM files"
edition = "2018"
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions echoscu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-echoscu"
version = "0.2.0-rc.1"
version = "0.2.0-rc.2"
authors = ["Eduardo Pinho <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -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"
6 changes: 3 additions & 3 deletions encoding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-encoding"
version = "0.5.0-rc.1"
version = "0.5.0-rc.2"
authors = ["Eduardo Pinho <[email protected]>"]
description = "DICOM encoding and decoding primitives"
edition = "2018"
Expand All @@ -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 }
Expand Down
12 changes: 6 additions & 6 deletions object/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-object"
version = "0.5.0-rc.1"
version = "0.5.0-rc.2"
authors = ["Eduardo Pinho <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -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"
Expand Down
18 changes: 9 additions & 9 deletions parent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom"
version = "0.5.0-rc.1"
version = "0.5.0-rc.2"
authors = ["Eduardo Pinho <[email protected]>"]
description = "A pure Rust implementation of the DICOM standard"
edition = "2018"
Expand All @@ -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" }
8 changes: 4 additions & 4 deletions parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-parser"
version = "0.5.0-rc.1"
version = "0.5.0-rc.2"
authors = ["Eduardo Pinho <[email protected]>"]
description = "A middle-level parser and printer of DICOM data sets"
edition = "2018"
Expand All @@ -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"
12 changes: 6 additions & 6 deletions pixeldata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-pixeldata"
version = "0.1.0-rc.1"
version = "0.1.0-rc.2"
authors = ["Eduardo Pinho <[email protected]>", "Peter Evers <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions scpproxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-scpproxy"
version = "0.4.0-rc.1"
version = "0.4.0-rc.2"
authors = ["Eduardo Pinho <[email protected]>", "Paul Knopf <[email protected]>"]
description = "A proxy SCP server, for logging and diagnostics"
edition = "2018"
Expand All @@ -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"
6 changes: 3 additions & 3 deletions storescu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-storescu"
version = "0.2.0-rc.1"
version = "0.2.0-rc.2"
authors = ["Eduardo Pinho <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -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"
6 changes: 3 additions & 3 deletions transfer-syntax-registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
description = "A registry of DICOM transfer syntaxes"
edition = "2018"
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions ul/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-ul"
version = "0.4.0-rc.1"
version = "0.4.0-rc.2"
authors = ["Eduardo Pinho <[email protected]>", "Paul Knopf <[email protected]>"]
description = "Types and methods for interacting with the DICOM Upper Layer Protocol"
edition = "2018"
Expand All @@ -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]
Expand Down

0 comments on commit 8af7e29

Please sign in to comment.