Skip to content

Commit b2e9640

Browse files
authored
prepare codec 0.4.0 release (#346)
1 parent 76338a5 commit b2e9640

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

actix-codec/CHANGES.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
## Unreleased - 2021-xx-xx
44

55

6+
## 0.4.0 - 2021-04-20
7+
* No significant changes since v0.4.0-beta.1.
8+
9+
610
## 0.4.0-beta.1 - 2020-12-28
711
* Replace `pin-project` with `pin-project-lite`. [#237]
812
* Upgrade `tokio` dependency to `1`. [#237]
@@ -23,28 +27,28 @@
2327
## 0.3.0-beta.1 - 2020-08-19
2428
* Use `.advance()` instead of `.split_to()`.
2529
* Upgrade `tokio-util` to `0.3`.
26-
* Improve `BytesCodec` `.encode()` performance
27-
* Simplify `BytesCodec` `.decode()`
30+
* Improve `BytesCodec::encode()` performance.
31+
* Simplify `BytesCodec::decode()`.
2832
* Rename methods on `Framed` to better describe their use.
2933
* Add method on `Framed` to get a pinned reference to the underlying I/O.
3034
* Add method on `Framed` check emptiness of read buffer.
3135

3236

3337
## 0.2.0 - 2019-12-10
34-
* Use specific futures dependencies
38+
* Use specific futures dependencies.
3539

3640

3741
## 0.2.0-alpha.4
38-
* Fix buffer remaining capacity calculation
42+
* Fix buffer remaining capacity calculation.
3943

4044

4145
## 0.2.0-alpha.3
42-
* Use tokio 0.2
43-
* Fix low/high watermark for write/read buffers
46+
* Use tokio 0.2.
47+
* Fix low/high watermark for write/read buffers.
4448

4549

4650
## 0.2.0-alpha.2
47-
* Migrated to `std::future`
51+
* Migrated to `std::future`.
4852

4953

5054
## 0.1.2 - 2019-03-27
@@ -56,4 +60,4 @@
5660

5761

5862
## 0.1.0 - 2018-12-09
59-
* Move codec to separate crate
63+
* Move codec to separate crate.

actix-codec/Cargo.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
[package]
22
name = "actix-codec"
3-
version = "0.4.0-beta.1"
3+
version = "0.4.0"
44
authors = ["Nikolay Kim <[email protected]>"]
55
description = "Codec utilities for working with framed protocols"
66
keywords = ["network", "framework", "async", "futures"]
7-
homepage = "https://actix.rs"
8-
repository = "https://github.com/actix/actix-net.git"
9-
documentation = "https://docs.rs/actix-codec"
7+
repository = "https://github.com/actix/actix-net"
108
categories = ["network-programming", "asynchronous"]
119
license = "MIT OR Apache-2.0"
1210
edition = "2018"

actix-server/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ authors = [
77
]
88
description = "General purpose TCP server built for the Actix ecosystem"
99
keywords = ["network", "framework", "async", "futures"]
10-
homepage = "https://actix.rs"
11-
repository = "https://github.com/actix/actix-net.git"
10+
repository = "https://github.com/actix/actix-net"
1211
categories = ["network-programming", "asynchronous"]
1312
license = "MIT OR Apache-2.0"
1413
edition = "2018"

0 commit comments

Comments
 (0)