Skip to content

Commit 70fcdee

Browse files
committed
Bump to v0.9.0
1 parent 6a0a030 commit 70fcdee

File tree

20 files changed

+110
-110
lines changed

20 files changed

+110
-110
lines changed

Cargo.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dicom-core"
3-
version = "0.8.2"
3+
version = "0.9.0"
44
authors = ["Eduardo Pinho <enet4mikeenet@gmail.com>"]
55
description = "Efficient and practical core library for DICOM compliant systems"
66
edition = "2018"

devtools/dictionary-builder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dicom-dictionary-builder"
3-
version = "0.8.2"
3+
version = "0.9.0"
44
authors = ["Eduardo Pinho <enet4mikeenet@gmail.com>"]
55
description = "A generator of DICOM dictionaries from standard documentation and other sources"
66
edition = "2018"

dictionary-std/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dicom-dictionary-std"
3-
version = "0.8.1"
3+
version = "0.9.0"
44
authors = ["Eduardo Pinho <enet4mikeenet@gmail.com>"]
55
description = "Standard DICOM attribute dictionary"
66
edition = "2018"
@@ -28,5 +28,5 @@ ldap-oid = []
2828
synchronization-frame-of-reference = []
2929

3030
[dependencies]
31-
dicom-core = { path = "../core", version = "0.8.2" }
31+
dicom-core = { path = "../core", version = "0.9" }
3232
once_cell = "1.18.0"

dump/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dicom-dump"
3-
version = "0.8.1"
3+
version = "0.9.0"
44
authors = ["Eduardo Pinho <enet4mikeenet@gmail.com>"]
55
description = "A CLI tool for inspecting DICOM files"
66
edition = "2018"
@@ -28,12 +28,12 @@ cli = ["clap", "dicom-transfer-syntax-registry/inventory-registry"]
2828
[dependencies]
2929
snafu = "0.8"
3030
clap = { version = "4.0.18", features = ["derive"], optional = true }
31-
dicom-core = { path = "../core", version = "0.8.2" }
32-
dicom-encoding = { path = "../encoding", version = "0.8.2" }
33-
dicom-json = { version = "0.8.2", path = "../json" }
34-
dicom-object = { path = "../object/", version = "0.8.2" }
35-
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry/", version = "0.8.2", default-features = false }
36-
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.8.1" }
31+
dicom-core = { path = "../core", version = "0.9" }
32+
dicom-encoding = { path = "../encoding", version = "0.9" }
33+
dicom-json = { path = "../json", version = "0.9" }
34+
dicom-object = { path = "../object/", version = "0.9" }
35+
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry/", version = "0.9", default-features = false }
36+
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.9" }
3737
owo-colors = { version = "4.0.0-rc.1", features = ["supports-colors"] }
3838
serde_json = "1.0.108"
3939
terminal_size = "0.4.0"

echoscu/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dicom-echoscu"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors = ["Eduardo Pinho <enet4mikeenet@gmail.com>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -12,12 +12,12 @@ readme = "README.md"
1212

1313
[dependencies]
1414
clap = { version = "4.0.18", features = ["derive"] }
15-
dicom-core = { path = "../core", version = "0.8.2" }
16-
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.8.1" }
17-
dicom-dump = { version = "0.8.1", path = "../dump", default-features = false }
18-
dicom-object = { path = "../object/", version = "0.8.2" }
19-
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry/", version = "0.8.2", default-features = false }
20-
dicom-ul = { path = "../ul", version = "0.8.2" }
15+
dicom-core = { path = "../core", version = "0.9" }
16+
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.9" }
17+
dicom-dump = { path = "../dump", version = "0.9", default-features = false }
18+
dicom-object = { path = "../object/", version = "0.9" }
19+
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry/", version = "0.9", default-features = false }
20+
dicom-ul = { path = "../ul", version = "0.9" }
2121
snafu = "0.8"
2222
tracing = "0.1.34"
2323
tracing-subscriber = "0.3.11"

encoding/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dicom-encoding"
3-
version = "0.8.2"
3+
version = "0.9.0"
44
authors = ["Eduardo Pinho <enet4mikeenet@gmail.com>"]
55
description = "DICOM encoding and decoding primitives"
66
edition = "2018"
@@ -12,8 +12,8 @@ keywords = ["dicom"]
1212
readme = "README.md"
1313

1414
[dependencies]
15-
dicom-core = { path = "../core", version = "0.8.2" }
16-
dicom-dictionary-std = { path = "../dictionary-std", version = "0.8.1" }
15+
dicom-core = { path = "../core", version = "0.9" }
16+
dicom-dictionary-std = { path = "../dictionary-std", version = "0.9" }
1717
encoding = "0.2.33"
1818
byteordered = "0.6"
1919
inventory = { version = "0.3.2", optional = true }

findscu/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dicom-findscu"
3-
version = "0.8.2"
3+
version = "0.9.0"
44
authors = ["Eduardo Pinho <enet4mikeenet@gmail.com>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -11,13 +11,13 @@ keywords = ["dicom", "query", "search"]
1111
readme = "README.md"
1212

1313
[dependencies]
14-
dicom-core = { path = '../core', version = "0.8.2" }
15-
dicom-ul = { path = '../ul', version = "0.8.2" }
16-
dicom-object = { path = '../object', version = "0.8.2" }
17-
dicom-encoding = { path = "../encoding/", version = "0.8.2" }
18-
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.8.1" }
19-
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry/", version = "0.8.2" }
20-
dicom-dump = { path = "../dump", default-features = false, version = "0.8.1" }
14+
dicom-core = { path = '../core', version = "0.9" }
15+
dicom-ul = { path = '../ul', version = "0.9" }
16+
dicom-object = { path = '../object', version = "0.9" }
17+
dicom-encoding = { path = "../encoding/", version = "0.9" }
18+
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.9" }
19+
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry/", version = "0.9" }
20+
dicom-dump = { path = "../dump", default-features = false, version = "0.9" }
2121
clap = { version = "4.0.18", features = ["derive"] }
2222
snafu = "0.8"
2323
tracing = "0.1.36"

fromimage/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dicom-fromimage"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
rust-version = "1.72.0"
66
authors = ["Eduardo Pinho <enet4mikeenet@gmail.com>"]
@@ -16,9 +16,9 @@ default = ['dicom-object/inventory-registry']
1616

1717
[dependencies]
1818
clap = { version = "4.0.18", features = ["derive"] }
19-
dicom-core = { path = "../core", version = "0.8.2" }
20-
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.8.1" }
21-
dicom-object = { path = "../object/", version = "0.8.2" }
19+
dicom-core = { path = "../core", version = "0.9" }
20+
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.9" }
21+
dicom-object = { path = "../object/", version = "0.9" }
2222
snafu = "0.8"
2323
tracing = "0.1.34"
2424
tracing-subscriber = "0.3.11"

json/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dicom-json"
3-
version = "0.8.2"
3+
version = "0.9.0"
44
authors = ["Eduardo Pinho <enet4mikeenet@gmail.com>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -11,9 +11,9 @@ readme = "README.md"
1111

1212
[dependencies]
1313
base64 = "0.22"
14-
dicom-core = { version = "0.8.2", path = "../core" }
15-
dicom-dictionary-std = { version = "0.8.1", path = "../dictionary-std" }
16-
dicom-object = { version = "0.8.2", path = "../object" }
14+
dicom-core = { path = "../core", version = "0.9" }
15+
dicom-dictionary-std = { path = "../dictionary-std", version = "0.9" }
16+
dicom-object = { path = "../object", version = "0.9" }
1717
num-traits = "0.2.15"
1818
serde = { version = "1.0.164", features = ["derive"] }
1919
serde_json = { version = "1.0.96", features = ["preserve_order"] }

0 commit comments

Comments
 (0)