Skip to content

Commit 095ef3f

Browse files
committed
Bump to V0.10.4
1 parent 8bdfead commit 095ef3f

File tree

9 files changed

+26
-27
lines changed

9 files changed

+26
-27
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ jobs:
6161
cargo clippy --verbose --no-default-features --features "${{ matrix.compile_features }},${COMMON_FEATURES}" -- -Dclippy::all
6262
- name: Tests/${{ matrix.compile_features }}
6363
run: |
64+
cargo test -p smb-msg --features both -- --nocapture
6465
cargo test --no-default-features --features "${{ matrix.compile_features }},${COMMON_FEATURES}" -- --nocapture
6566
# Test without encryption and compression
6667
cargo test --no-default-features --features "${{ matrix.compile_features }},sign" -- --nocapture

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ authors = ["Aviv N <[email protected]>"]
1313
keywords = ["smb", "network", "file-sharing", "windows"]
1414
categories = ["network-programming", "parsing", "filesystem"]
1515
readme = "README.md"
16-
version = "0.10.3"
16+
version = "0.10.4"
1717

1818
[workspace.dependencies]
1919
# Binary encoding/decoding

crates/smb-dtyp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ pastey = { workspace = true }
1919
rand = { workspace = true }
2020

2121
[dev-dependencies]
22-
smb-tests = { path = "../smb-tests", version = "0.10.3" }
22+
smb-tests = { path = "../smb-tests", version = "0.10.4" }

crates/smb-fscc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ keywords.workspace = true
1212
categories.workspace = true
1313

1414
[dependencies]
15-
smb-dtyp = { path = "../smb-dtyp", version = "0.10.3" }
15+
smb-dtyp = { path = "../smb-dtyp", version = "0.10.4" }
1616

1717
binrw = { workspace = true }
1818
modular-bitfield = { workspace = true }
@@ -21,5 +21,5 @@ pastey = { workspace = true }
2121
thiserror = { workspace = true }
2222

2323
[dev-dependencies]
24-
smb-tests = { path = "../smb-tests", version = "0.10.3" }
24+
smb-tests = { path = "../smb-tests", version = "0.10.4" }
2525
const_format = { workspace = true }

crates/smb-msg/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ server = []
1818
both = ["client", "server"]
1919

2020
[dependencies]
21-
smb-dtyp = { path = "../smb-dtyp", version = "0.10.3" }
22-
smb-fscc = { path = "../smb-fscc", version = "0.10.3" }
21+
smb-dtyp = { path = "../smb-dtyp", version = "0.10.4" }
22+
smb-fscc = { path = "../smb-fscc", version = "0.10.4" }
2323

2424
binrw = { workspace = true }
2525
modular-bitfield = { workspace = true }
@@ -28,6 +28,5 @@ pastey = { workspace = true }
2828
thiserror = { workspace = true }
2929

3030
[dev-dependencies]
31-
smb-msg = { path = ".", version = "0.10.2", features = ["both"] }
32-
smb-tests = { path = "../smb-tests", version = "0.10.2" }
31+
smb-tests = { path = "../smb-tests", version = "0.10.4" }
3332
const_format = { workspace = true }

crates/smb-rpc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ keywords.workspace = true
1212
categories.workspace = true
1313

1414
[dependencies]
15-
smb-dtyp = { path = "../smb-dtyp", version = "0.10.3" }
15+
smb-dtyp = { path = "../smb-dtyp", version = "0.10.4" }
1616

1717
binrw = { workspace = true }
1818
modular-bitfield = { workspace = true }
@@ -22,7 +22,7 @@ maybe-async = { workspace = true }
2222
thiserror = { workspace = true }
2323

2424
[dev-dependencies]
25-
smb-tests = { path = "../smb-tests", version = "0.10.2" }
25+
smb-tests = { path = "../smb-tests", version = "0.10.4" }
2626

2727
[features]
2828
default = []

crates/smb-transport/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ keywords.workspace = true
1212
categories.workspace = true
1313

1414
[dependencies]
15-
smb-dtyp = { path = "../smb-dtyp", version = "0.10.3" }
16-
smb-msg = { path = "../smb-msg", version = "0.10.3", optional = true }
15+
smb-dtyp = { path = "../smb-dtyp", version = "0.10.4" }
16+
smb-msg = { path = "../smb-msg", version = "0.10.4", optional = true }
1717

1818
log = { workspace = true }
1919
tokio = { workspace = true, features = [
@@ -45,7 +45,7 @@ maybe-async = { workspace = true }
4545
thiserror = { workspace = true }
4646

4747
[dev-dependencies]
48-
smb-tests = { path = "../smb-tests", version = "0.10.2" }
48+
smb-tests = { path = "../smb-tests", version = "0.10.4" }
4949

5050
[features]
5151
default = ["async", "netbios-transport"]

crates/smb/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ categories.workspace = true
1212
readme.workspace = true
1313

1414
[dependencies]
15-
smb-msg = { path = "../smb-msg", version = "0.10.3", default-features = false, features = ["client"]}
16-
smb-dtyp = { path = "../smb-dtyp", version = "0.10.3" }
17-
smb-rpc = { path = "../smb-rpc", version = "0.10.3" }
18-
smb-fscc = { path = "../smb-fscc", version = "0.10.3" }
19-
smb-transport = { path = "../smb-transport", version = "0.10.3", default-features = false }
15+
smb-msg = { path = "../smb-msg", version = "0.10.4", default-features = false, features = ["client"]}
16+
smb-dtyp = { path = "../smb-dtyp", version = "0.10.4" }
17+
smb-rpc = { path = "../smb-rpc", version = "0.10.4" }
18+
smb-fscc = { path = "../smb-fscc", version = "0.10.4" }
19+
smb-transport = { path = "../smb-transport", version = "0.10.4", default-features = false }
2020

2121
# Encoding/Decoding
2222
binrw = { workspace = true }

0 commit comments

Comments
 (0)