From b3351e675b5f369a3b13dd3f550d5073e466a6c1 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 23 Jul 2019 10:16:51 -0700 Subject: [PATCH] Prepare master for 0.2.x --- Cargo.toml | 4 +++- README.md | 5 +++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e9336a3..81b8c89 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ name = "h2" # - html_root_url. # - Update CHANGELOG.md. # - Create git tag -version = "0.1.25" +version = "0.2.0-alpha.0" license = "MIT" authors = ["Carl Lerche "] description = "An HTTP/2.0 client and server" @@ -16,6 +16,8 @@ keywords = ["http", "async", "non-blocking"] categories = ["asynchronous", "web-programming", "network-programming"] exclude = ["fixtures/**", "ci/**"] +publish = false + [badges.travis-ci] repository = "hyperium/h2" branch = "master" diff --git a/README.md b/README.md index 655c3de..9a4df60 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,10 @@ # H2 +> **NOTE**: h2's [`master`](https://github.com/hyperium/h2/tree/master) branch +> is currently in the process of moving to `std::future`. For the most recent +> release, please see the [`0.1.x`](https://github.com/hyperium/h2/tree/0.1.x) +> branch. + A Tokio aware, HTTP/2.0 client & server implementation for Rust. [![Build Status](https://travis-ci.org/hyperium/h2.svg?branch=master)](https://travis-ci.org/hyperium/h2)