Skip to content

Commit bd2ab5e

Browse files
committed
v1.1.9
1 parent 2eb674f commit bd2ab5e

File tree

4 files changed

+17
-11
lines changed

4 files changed

+17
-11
lines changed

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.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lynn_tcp"
3-
version = "1.1.8"
3+
version = "1.1.9"
44
edition = "2024"
55
rust-version = "1.85"
66
authors = ["lynn_tcp Contributors"]
@@ -12,8 +12,8 @@ categories = ["network-programming"]
1212
keywords = ["tcp" , "tcp-server" , "tcp-client" , "network"]
1313

1414
[dependencies]
15-
bytes = "1.10"
16-
tokio = { version = "1.43", features = ["macros","net","sync","rt-multi-thread","time","io-util"] }
15+
bytes = "=1.10.1"
16+
tokio = { version = "=1.44.1", features = ["macros","net","sync","rt-multi-thread","time","io-util"] }
1717
tracing = "0.1"
1818
tracing-subscriber = "0.3"
1919

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,21 @@ Use `cargo add lynn_tcp` or:
3636

3737
```rust
3838
[dependencies]
39-
lynn_tcp = "1.1.8"
39+
lynn_tcp = "=1.1.9"
4040
```
4141

4242
**server feature**
4343

4444
```rust
4545
[dependencies]
46-
lynn_tcp = { version = "1.1.8" , features = "server" }
46+
lynn_tcp = { version = "=1.1.9" , features = "server" }
4747
```
4848

4949
**client feature**
5050

5151
```rust
5252
[dependencies]
53-
lynn_tcp = { version = "1.1.8" , features = "client" }
53+
lynn_tcp = { version = "=1.1.9" , features = "client" }
5454
```
5555

5656
#### Server

version.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
### v1.1.x - release
44

5+
#### v1.1.9 - release
6+
7+
1.fix
8+
9+
- lifecycle management(The previous lifecycle management was disrupted during the upgrade from v1.1.3 to v1.1.4, so we discontinued v1.1.4 to v1.1.8 and fixed the issue in v1.1.9. Currently, Rust still manages most of the lifecycle automatically, and we only manually closed some critical nodes)
10+
511
#### v1.1.8 - release
612

713
1.perf

0 commit comments

Comments
 (0)