Skip to content

Commit 8721dde

Browse files
chore: release
1 parent 3f3e9cd commit 8721dde

12 files changed

Lines changed: 68 additions & 17 deletions

File tree

Cargo.lock

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

crates/cargo_nfs3_server/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.0-alpha.3](https://github.com/Vaiz/nfs3/compare/cargo-nfs3-server-v0.1.0-alpha.2...cargo-nfs3-server-v0.1.0-alpha.3) - 2025-06-29
11+
12+
### Added
13+
14+
- re-export nfs3_types from nfs3_server and nfs3_client crates ([#94](https://github.com/Vaiz/nfs3/pull/94))
15+
16+
### Fixed
17+
18+
- new clippy issues from recent Rust update ([#97](https://github.com/Vaiz/nfs3/pull/97))
19+
1020
## [0.1.0-alpha.2](https://github.com/Vaiz/nfs3/compare/cargo-nfs3-server-v0.1.0-alpha.1...cargo-nfs3-server-v0.1.0-alpha.2) - 2025-06-15
1121

1222
### Changes

crates/cargo_nfs3_server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-nfs3-server"
3-
version = "0.1.0-alpha.2"
3+
version = "0.1.0-alpha.3"
44
authors.workspace = true
55
edition.workspace = true
66
rust-version.workspace = true
@@ -12,7 +12,7 @@ description = "Simple and easy-to-deploy NFSv3 server"
1212
readme = "README.md"
1313

1414
[dependencies]
15-
nfs3_server = { path = "../nfs3_server", version = "0.6.0", features = ["memfs"] }
15+
nfs3_server = { path = "../nfs3_server", version = "0.7.0", features = ["memfs"] }
1616

1717
clap = { workspace = true, default-features = true, features = ["derive"] }
1818
ctrlc = { workspace = true }

crates/nfs3_client/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.5.0](https://github.com/Vaiz/nfs3/compare/nfs3_client-v0.4.2...nfs3_client-v0.5.0) - 2025-06-29
11+
12+
### Added
13+
14+
- [**breaking**] pass arguments by reference ([#99](https://github.com/Vaiz/nfs3/pull/99))
15+
- [**breaking**] drop xdr-codec dependency ([#98](https://github.com/Vaiz/nfs3/pull/98))
16+
- re-export nfs3_types from nfs3_server and nfs3_client crates ([#94](https://github.com/Vaiz/nfs3/pull/94))
17+
18+
### Fixed
19+
20+
- new clippy issues from recent Rust update ([#97](https://github.com/Vaiz/nfs3/pull/97))
21+
1022
## [0.4.2](https://github.com/Vaiz/nfs3/compare/nfs3_client-v0.4.1...nfs3_client-v0.4.2) - 2025-06-15
1123

1224
### Changes

crates/nfs3_client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nfs3_client"
3-
version = "0.4.2"
3+
version = "0.5.0"
44
authors.workspace = true
55
edition.workspace = true
66
rust-version.workspace = true
@@ -15,7 +15,7 @@ readme = "README.md"
1515
tokio = ["dep:tokio"]
1616

1717
[dependencies]
18-
nfs3_types = { path = "../nfs3_types", version = "0.3.4" }
18+
nfs3_types = { path = "../nfs3_types", version = "0.4.0" }
1919

2020
rand.workspace = true
2121
tokio = { workspace = true, optional = true, default-features = false, features = ["net", "io-util"] }

crates/nfs3_macros/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.0](https://github.com/Vaiz/nfs3/compare/nfs3_macros-v0.3.4...nfs3_macros-v0.4.0) - 2025-06-29
11+
12+
### Added
13+
14+
- [**breaking**] drop xdr-codec dependency ([#98](https://github.com/Vaiz/nfs3/pull/98))
15+
1016
## [0.3.4](https://github.com/Vaiz/nfs3/compare/nfs3_macros-v0.3.3...nfs3_macros-v0.3.4) - 2025-06-15
1117

1218
### Changes

crates/nfs3_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nfs3_macros"
3-
version = "0.3.4"
3+
version = "0.4.0"
44
edition.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true

crates/nfs3_server/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.0](https://github.com/Vaiz/nfs3/compare/nfs3_server-v0.6.0...nfs3_server-v0.7.0) - 2025-06-29
11+
12+
### Added
13+
14+
- [**breaking**] pass arguments by reference ([#99](https://github.com/Vaiz/nfs3/pull/99))
15+
- [**breaking**] drop xdr-codec dependency ([#98](https://github.com/Vaiz/nfs3/pull/98))
16+
- re-export nfs3_types from nfs3_server and nfs3_client crates ([#94](https://github.com/Vaiz/nfs3/pull/94))
17+
18+
### Fixed
19+
20+
- new clippy issues from recent Rust update ([#97](https://github.com/Vaiz/nfs3/pull/97))
21+
1022
## [0.6.0](https://github.com/Vaiz/nfs3/compare/nfs3_server-v0.5.0...nfs3_server-v0.6.0) - 2025-06-15
1123

1224
### Added

crates/nfs3_server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nfs3_server"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
edition.workspace = true
55
rust-version.workspace = true
66
homepage.workspace = true
@@ -22,7 +22,7 @@ __test_reexports = [] # should not be used outside nfs3_tests crate
2222
memfs = []
2323

2424
[dependencies]
25-
nfs3_types = { path = "../nfs3_types", version = "0.3.4" }
25+
nfs3_types = { path = "../nfs3_types", version = "0.4.0" }
2626

2727
tokio = { workspace = true, features = ["net", "io-util", "sync", "fs", "rt", "macros", "time"] }
2828
tracing.workspace = true

crates/nfs3_tests/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ license.workspace = true
1010
publish = false # this crate contains only tests
1111

1212
[dependencies]
13-
nfs3_client = { path = "../nfs3_client", version = "0.4.2", features = ["tokio"] }
14-
nfs3_server = { path = "../nfs3_server", version = "0.6.0", features = ["__test_reexports", "memfs"] }
15-
nfs3_types = { path = "../nfs3_types", version = "0.3.4" }
13+
nfs3_client = { path = "../nfs3_client", version = "0.5.0", features = ["tokio"] }
14+
nfs3_server = { path = "../nfs3_server", version = "0.7.0", features = ["__test_reexports", "memfs"] }
15+
nfs3_types = { path = "../nfs3_types", version = "0.4.0" }
1616

1717
anyhow.workspace = true
1818
intaglio.workspace = true

0 commit comments

Comments
 (0)