Skip to content

Commit 56d958f

Browse files
committed
chore: ready release 0.2.0
1 parent 8b97c48 commit 56d958f

File tree

3 files changed

+37
-3
lines changed

3 files changed

+37
-3
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
1111
readme = "README.md"
1212
repository = "https://github.com/foldright/micro-http"
1313
rust-version = "1.90"
14-
version = "0.1.1"
14+
version = "0.2.0"
1515

1616
[workspace.dependencies]
1717
http = "1.3"
@@ -62,8 +62,8 @@ codspeed-criterion-compat = { version = "3.0.5", default-features = false }
6262

6363
dhat = "0.3"
6464

65-
micro-web = { path = "crates/web", version = "0.1.1" }
66-
micro-http = { path = "crates/http", version = "0.1.1" }
65+
micro-web = { path = "crates/web", version = "0.2.0" }
66+
micro-http = { path = "crates/http", version = "0.2.0" }
6767

6868
[profile.dev.build-override]
6969
debug = true

crates/http/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.2.0](https://github.com/foldright/micro-http/compare/micro-http-v0.1.1...micro-http-v0.2.0) - 2025-09-20
11+
12+
### Other
13+
14+
- update version setting
15+
- remove unnecessary memory allocate
16+
- and some polishing

crates/web/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.2.0](https://github.com/foldright/micro-http/compare/micro-web-v0.1.1...micro-web-v0.2.0) - 2025-09-20
11+
12+
### Breaking
13+
- route don't need `handler_fn` anymore 🚀
14+
15+
### Other
16+
- nodelay when connected
17+
- remove unnecessary memory allocate
18+
- and some polishing

0 commit comments

Comments
 (0)