Skip to content

Commit 6a979a6

Browse files
authored
Make control module public (#80)
1 parent 9aafe99 commit 6a979a6

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes
22

3+
## [3.6.1] - 2026-02-02
4+
5+
* Make control module public
6+
37
## [3.6.0] - 2026-02-02
48

59
* Refactor control messages

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ntex-h2"
3-
version = "3.6.0"
3+
version = "3.6.1"
44
license = "MIT OR Apache-2.0"
55
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
66
description = "An HTTP/2 client and server"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ mod codec;
8787
mod config;
8888
mod connection;
8989
mod consts;
90-
mod control;
90+
pub mod control;
9191
mod default;
9292
mod dispatcher;
9393
mod error;

0 commit comments

Comments
 (0)