Skip to content

Commit 47e9f62

Browse files
LPardueseanmonstar
authored andcommitted
There's no such thing as HTTP/2.0
1 parent 4dc2b4a commit 47e9f62

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ authors = [
1111
"Carl Lerche <[email protected]>",
1212
"Sean McArthur <[email protected]>",
1313
]
14-
description = "An HTTP/2.0 client and server"
14+
description = "An HTTP/2 client and server"
1515
documentation = "https://docs.rs/h2"
1616
repository = "https://github.com/hyperium/h2"
1717
readme = "README.md"

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# H2
22

3-
A Tokio aware, HTTP/2.0 client & server implementation for Rust.
3+
A Tokio aware, HTTP/2 client & server implementation for Rust.
44

55
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
66
[![Crates.io](https://img.shields.io/crates/v/h2.svg)](https://crates.io/crates/h2)
@@ -12,21 +12,21 @@ More information about this crate can be found in the [crate documentation][dox]
1212

1313
## Features
1414

15-
* Client and server HTTP/2.0 implementation.
16-
* Implements the full HTTP/2.0 specification.
15+
* Client and server HTTP/2 implementation.
16+
* Implements the full HTTP/2 specification.
1717
* Passes [h2spec](https://github.com/summerwind/h2spec).
1818
* Focus on performance and correctness.
1919
* Built on [Tokio](https://tokio.rs).
2020

2121
## Non goals
2222

23-
This crate is intended to only be an implementation of the HTTP/2.0
23+
This crate is intended to only be an implementation of the HTTP/2
2424
specification. It does not handle:
2525

2626
* Managing TCP connections
2727
* HTTP 1.0 upgrade
2828
* TLS
29-
* Any feature not described by the HTTP/2.0 specification.
29+
* Any feature not described by the HTTP/2 specification.
3030

3131
This crate is now used by [hyper](https://github.com/hyperium/hyper), which will provide all of these features.
3232

@@ -55,7 +55,7 @@ fn main() {
5555

5656
**How does h2 compare to [solicit] or [rust-http2]?**
5757

58-
The h2 library has implemented more of the details of the HTTP/2.0 specification
58+
The h2 library has implemented more of the details of the HTTP/2 specification
5959
than any other Rust library. It also passes the [h2spec] set of tests. The h2
6060
library is rapidly approaching "production ready" quality.
6161

0 commit comments

Comments
 (0)