From d1484a75e782b5bffc9372435423d3aa2fa395a7 Mon Sep 17 00:00:00 2001 From: Lucien XU Date: Tue, 1 Jun 2021 08:36:20 +0200 Subject: [PATCH] Bump version to 0.2.0 --- README.md | 4 ++-- pretend-awc/Cargo.toml | 4 ++-- pretend-codegen/Cargo.toml | 2 +- pretend-isahc/Cargo.toml | 4 ++-- pretend-reqwest/Cargo.toml | 6 +++--- pretend/Cargo.toml | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index f967316..bb00dca 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,6 @@ Some features: This repository contains the code for [`pretend`](pretend/README.md) and [`pretend-codegen`](pretend-codegen/README.md) as well as [`pretend-reqwest`](pretend-reqwest/README.md) -and [`pretend-ishac`](pretend-isahc/README.md). +[`pretend-ishac`](pretend-isahc/README.md) and [`pretend-awc`](pretend-awc/README.md). -MSRV for the `pretend` ecosystem is Rust **1.44**. \ No newline at end of file +MSRV for the `pretend` ecosystem is Rust **1.44**. diff --git a/pretend-awc/Cargo.toml b/pretend-awc/Cargo.toml index ec27a7b..15e5970 100644 --- a/pretend-awc/Cargo.toml +++ b/pretend-awc/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pretend-awc" edition = "2018" -version = "0.1.0" +version = "0.2.0" description = "awc based client for pretend." authors = ["Lucien XU "] license = "MIT" @@ -13,5 +13,5 @@ categories = ["web-programming::http-client"] readme = "README.md" [dependencies] -pretend = { path = "../pretend", version = "0.1.0" } +pretend = { path = "../pretend", version = "0.2.0" } awc = "2.0" diff --git a/pretend-codegen/Cargo.toml b/pretend-codegen/Cargo.toml index 9ee6f40..2010912 100644 --- a/pretend-codegen/Cargo.toml +++ b/pretend-codegen/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pretend-codegen" edition = "2018" -version = "0.1.1" +version = "0.2.0" description = "codegen for pretend." authors = ["Lucien XU "] license = "MIT" diff --git a/pretend-isahc/Cargo.toml b/pretend-isahc/Cargo.toml index cc58bd4..e3ff4a0 100644 --- a/pretend-isahc/Cargo.toml +++ b/pretend-isahc/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pretend-isahc" edition = "2018" -version = "0.1.1" +version = "0.2.0" description = "isahc based client for pretend." authors = ["Lucien XU "] license = "MIT" @@ -13,5 +13,5 @@ categories = ["web-programming::http-client"] readme = "README.md" [dependencies] -pretend = { path = "../pretend", version = "0.1.0" } +pretend = { path = "../pretend", version = "0.2.0" } isahc = "1.3" diff --git a/pretend-reqwest/Cargo.toml b/pretend-reqwest/Cargo.toml index 5905759..48f05cc 100644 --- a/pretend-reqwest/Cargo.toml +++ b/pretend-reqwest/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pretend-reqwest" edition = "2018" -version = "0.1.1" +version = "0.2.0" description = "reqwest based client for pretend." authors = ["Lucien XU "] license = "MIT" @@ -13,10 +13,10 @@ categories = ["web-programming::http-client"] readme = "README.md" [dependencies] -pretend = { path = "../pretend", version = "0.1.0" } +pretend = { path = "../pretend", version = "0.2.0" } reqwest = { version = "0.11" } hyper = ">=0.14, <0.14.5" # Make socket2 compatible with Rust 1.44 [features] default = [] -blocking = ["reqwest/blocking"] \ No newline at end of file +blocking = ["reqwest/blocking"] diff --git a/pretend/Cargo.toml b/pretend/Cargo.toml index 124dae5..246608f 100644 --- a/pretend/Cargo.toml +++ b/pretend/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pretend" edition = "2018" -version = "0.1.1" +version = "0.2.0" description = "pretend is a modular, Feign-inspired, HTTP client based on macros." authors = ["Lucien XU "] license = "MIT" @@ -18,7 +18,7 @@ bytes = "1.0" encoding_rs = "0.8" http = "0.2" mime = "0.3" -pretend-codegen = { path = "../pretend-codegen", version = "0.1.0" } +pretend-codegen = { path = "../pretend-codegen", version = "0.2.0" } serde = "1.0" serde_json = "1.0" serde_urlencoded = "0.7"