Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dxx committed Mar 16, 2021
1 parent 3e9a333 commit 46ecb15
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "feignhttp"
version = "0.0.1"
version = "0.1.0"
authors = ["dxx <[email protected]>"]
edition = "2018"
description = "Declarative HTTP client for rust"
Expand All @@ -25,7 +25,7 @@ exclude = [
]

[dependencies]
feignhttp-codegen = { version = "0.0.1", path = "codegen" }
feignhttp-codegen = { version = "0.1.0", path = "codegen" }

http = "0.2"
serde = "1"
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# FeignHttp

[![rust](https://img.shields.io/badge/language-rust-c99272.svg)](https://github.com/rust-lang/rust)
[![crates.io](https://img.shields.io/crates/v/feignhttp.svg)](https://crates.io/crates/feignhttp)
[![Documentation](https://docs.rs/feignhttp/badge.svg)](https://docs.rs/feignhttp)
[![MIT licensed](https://img.shields.io/github/license/dxx/feignhttp.svg?color=blue)](./LICENSE)

FeignHttp is a declarative HTTP client. Based on rust macros.
Expand All @@ -19,7 +20,7 @@ FeignHttp mark macros on asynchronous functions, you need to add [Tokio](https:/
```toml
[dependencies]
tokio = { version = "1", features = ["full"] }
feignhttp = { version = "0.0.1" }
feignhttp = { version = "0.1.0" }
```

Then add the following code:
Expand Down
2 changes: 1 addition & 1 deletion codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "feignhttp-codegen"
version = "0.0.1"
version = "0.1.0"
authors = ["dxx <[email protected]>"]
edition = "2018"
description = "FeignHttp macro support"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//! ```toml
//! [dependencies]
//! tokio = { version = "1", features = ["full"] }
//! feignhttp = { version = "0.0.1" }
//! feignhttp = { version = "0.1.0" }
//! ```
//!
//! Then add the following code:
Expand Down

0 comments on commit 46ecb15

Please sign in to comment.