Skip to content

Commit a6f55c1

Browse files
committed
v0.6.0
1 parent 959bd84 commit a6f55c1

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,50 @@
1+
# v0.6.0 (2024-02-26)
2+
3+
Set MSRV to 1.75.0 and remove `async-trait` dependency
4+
15
# v0.5.1 (2022-03-03)
6+
27
Fix processing of `DOMAINNAME` address type
38

49
# v0.5.0 (2020-12-26)
10+
511
Update to tokio 1.0
612

713
# v0.4.0 (2020-10-16)
14+
815
Update to tokio 0.3
916
`send_to` and `recv_from` use `&self` now, so you can use something like `Arc` to make send and receive halves
1017

1118
# v0.3.2 (2020-08-04)
19+
1220
Add split API for `SocksDatagram`
1321

1422
# v0.3.1 (2020-03-18)
23+
1524
Fix `thiserror` crate incorrectly displaying foreign errors
1625

1726
# v0.3.0 (2020-01-05)
27+
1828
Now you can use anything that implement `AsyncRead` and `AsyncWrite`
1929

2030
# v0.2.1 (2020-01-04)
31+
2132
Fix futures have no `Send` trait
2233

2334
# v0.2.0 (2019-12-31)
35+
2436
* Rename `TargetAddr` to `AddrKind`
2537
* Implement `From<...>` for `AddrKind` and consume `Into<AddrKind>` in method arguments
2638
* Update `Error`
2739
* `SocksDatagram::associate` now consume `TcpStream` instead of `ToSocketAddrs` and can access association address
2840
* Add `new` method for `Auth`
2941

3042
# v0.1.1 (2019-12-25)
43+
3144
* Increase inner buffer size when receiving UDP datagram
3245
* Fix crate name in documentation
3346
* Set minimum versions of dependencies
3447

3548
# v0.1.0 (2019-12-21)
49+
3650
Initial commit

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-socks5"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = ["Arsenii Lyashenko <[email protected]>", "Temirkhan Myrzamadi <[email protected]>"]
55
license = "Apache-2.0 OR MIT"
66
description = "An async/.await SOCKS5 implementation"

0 commit comments

Comments
 (0)