Skip to content

Commit e3a358d

Browse files
committed
v0.2.6
1 parent d3b9f1e commit e3a358d

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.2.6 (July 13, 2020)
2+
3+
* Integrate `tracing` directly where `log` was used. (For 0.2.x, `log`s are still emitted by default.)
4+
15
# 0.2.5 (May 6, 2020)
26

37
* Fix rare debug assert failure in store shutdown.

Diff for: Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ name = "h2"
55
# - html_root_url.
66
# - Update CHANGELOG.md.
77
# - Create git tag
8-
version = "0.2.5"
8+
version = "0.2.6"
99
license = "MIT"
1010
authors = [
1111
"Carl Lerche <[email protected]>",
1212
"Sean McArthur <[email protected]>",
1313
]
1414
description = "An HTTP/2.0 client and server"
15-
documentation = "https://docs.rs/h2/0.2.5/h2/"
15+
documentation = "https://docs.rs/h2/0.2.6/h2/"
1616
repository = "https://github.com/hyperium/h2"
1717
readme = "README.md"
1818
keywords = ["http", "async", "non-blocking"]

Diff for: src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
//! [`server::handshake`]: server/fn.handshake.html
7979
//! [`client::handshake`]: client/fn.handshake.html
8080
81-
#![doc(html_root_url = "https://docs.rs/h2/0.2.5")]
81+
#![doc(html_root_url = "https://docs.rs/h2/0.2.6")]
8282
#![deny(missing_debug_implementations, missing_docs)]
8383
#![cfg_attr(test, deny(warnings))]
8484

0 commit comments

Comments
 (0)