Skip to content

Commit c4b705d

Browse files
authored
ServiceConfig is not Clone (#83)
1 parent ee3ca9f commit c4b705d

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.7.1] - 2026-02-16
4+
5+
* ServiceConfig is not Clone
6+
37
## [3.7.0] - 2026-02-16
48

59
* SharedCfg is not Copy

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.7.0"
3+
version = "3.7.1"
44
license = "MIT OR Apache-2.0"
55
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
66
description = "An HTTP/2 client and server"

src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use ntex_util::time::Seconds;
1111

1212
use crate::{consts, frame, frame::Settings, frame::WindowSize};
1313

14-
#[derive(Clone, Debug)]
14+
#[derive(Debug)]
1515
/// Http2 connection configuration
1616
pub struct ServiceConfig {
1717
pub(crate) settings: Settings,

0 commit comments

Comments
 (0)