Skip to content

Commit 33bcfc5

Browse files
committed
Release 0.4.1
1 parent 9cc9678 commit 33bcfc5

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

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

88
## [unreleased]
99

10+
## [0.4.1] - 2025-10-25
11+
1012
### Changed
1113

1214
- Add support for windowsize option (RFC 7440) ([#17](https://github.com/oblique/async-tftp-rs/pull/17))
@@ -126,7 +128,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
126128
[First release](https://docs.rs/async-tftp/0.1.0)
127129

128130

129-
[unreleased]: https://github.com/oblique/async-tftp-rs/compare/0.3.6...HEAD
131+
[unreleased]: https://github.com/oblique/async-tftp-rs/compare/0.4.1...HEAD
132+
[0.4.1]: https://github.com/oblique/async-tftp-rs/compare/0.3.6...0.4.1
130133
[0.3.6]: https://github.com/oblique/async-tftp-rs/compare/0.3.5...0.3.6
131134
[0.3.5]: https://github.com/oblique/async-tftp-rs/compare/0.3.4...0.3.5
132135
[0.3.4]: https://github.com/oblique/async-tftp-rs/compare/0.3.3...0.3.4

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-tftp"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors = ["oblique <psyberbits@gmail.com>"]
55
edition = "2021"
66
rust-version = "1.75"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Add in `Cargo.toml`:
4646

4747
```toml
4848
[dependencies]
49-
async-tftp = "0.3"
49+
async-tftp = "0.4"
5050
# or any other runtime/executor
5151
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
5252
```

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
//!
4141
//! ```toml
4242
//! [dependencies]
43-
//! async-tftp = "0.3"
43+
//! async-tftp = "0.4"
4444
//! # or any other runtime/executor
4545
//! tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
4646
//! ```

0 commit comments

Comments
 (0)