Skip to content

Commit

Permalink
Bump to v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tesaguri committed Oct 18, 2020
1 parent c994ccd commit 099bd67
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
oauth = { version = "0.3", package = "oauth1-request" }
oauth = { version = "0.4", package = "oauth1-request" }
```

A typical authorization flow looks like this:
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ http-body = "0.3"
hyper = { version = "0.13", features = ["stream"] }
log = "0.4"
nom = "=6.0.0-alpha3"
oauth = { version = "0.3", package = "oauth1-request" }
oauth = { version = "0.4", package = "oauth1-request" }
oauth-credentials = { version = "0.1", features = ["serde"] }
percent-encoding = "2"
pin-project = "1"
Expand Down
6 changes: 3 additions & 3 deletions oauth1-request-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "oauth1-request-derive"
edition = "2018"
version = "0.3.3"
version = "0.4.0"
authors = ["Daiki Mizukami <[email protected]>"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/tesaguri/oauth1-request-rs"
repository = "https://github.com/tesaguri/oauth1-request-rs"
documentation = "https://docs.rs/oauth1-request-derive/0.3.3/oauth1_request_derive/"
documentation = "https://docs.rs/oauth1-request-derive/0.4.0/oauth1_request_derive/"
description = """
A derive macro for `oauth1_request::Request` trait.
"""
Expand All @@ -23,5 +23,5 @@ syn = { version = "1", features = ["full"] }

[dev-dependencies]
compiletest = { version = "0.5", package = "compiletest_rs" }
oauth = { version = "0.3.0", package = "oauth1-request" }
oauth = { version = "0.4", package = "oauth1-request" }
version-sync = "0.9"
4 changes: 2 additions & 2 deletions oauth1-request-derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

//! This crate provides a derive macro for [`oauth1_request::Request`][Request]:
//!
//! [Request]: https://docs.rs/oauth1-request/0.3/oauth1_request/trait.Request.html
//! [Request]: https://docs.rs/oauth1-request/0.4/oauth1_request/trait.Request.html
//!
//! ```
//! #[derive(oauth::Request)]
Expand All @@ -13,7 +13,7 @@
//! is enabled (which is on by default).
//! You should use the re-export instead of depending on this crate directly.

#![doc(html_root_url = "https://docs.rs/oauth1-request-derive/0.3.3")]
#![doc(html_root_url = "https://docs.rs/oauth1-request-derive/0.4.0")]

#[allow(unused_extern_crates)]
extern crate proc_macro;
Expand Down
2 changes: 1 addition & 1 deletion oauth1-request-derive/test-deps/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false
[workspace]

[dependencies]
oauth1-request = { version = "0.3", default-features = false, features = ["derive"] }
oauth1-request = { version = "0.4", default-features = false, features = ["derive"] }

[patch.crates-io]
oauth-credentials = { path = "../../oauth-credentials" }
Expand Down
8 changes: 4 additions & 4 deletions oauth1-request/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oauth1-request"
version = "0.3.2"
version = "0.4.0"
edition = "2018"
authors = ["Daiki Mizukami <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -9,7 +9,7 @@ keywords = ["oauth", "oauth1"]
categories = ["authentication"]
homepage = "https://github.com/tesaguri/oauth1-request-rs"
repository = "https://github.com/tesaguri/oauth1-request-rs"
documentation = "https://docs.rs/oauth1-request/0.3.2/oauth1_request/"
documentation = "https://docs.rs/oauth1-request/0.4.0/oauth1_request/"
description = """
Yet yet yet another OAuth 1 client library.
"""
Expand All @@ -23,7 +23,7 @@ percent-encoding = "2"
rand = "0.7"

# `derive` feature
oauth1-request-derive = { version = "0.3", optional = true }
oauth1-request-derive = { version = "0.4", optional = true }

# `hmac-sha1` feature
either = { version = "1", optional = true }
Expand All @@ -32,7 +32,7 @@ sha-1 = { version = "0.9", optional = true }

[dev-dependencies]
# Trick to make `proc-macro-crate` work in doctests.
oauth1-request = { version = "0.3", path = "" }
oauth1-request = { version = "0.4", path = "" }
version-sync = "0.9"

[features]
Expand Down
4 changes: 2 additions & 2 deletions oauth1-request/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//!
//! ```toml
//! [dependencies]
//! oauth = { version = "0.3", package = "oauth1-request" }
//! oauth = { version = "0.4", package = "oauth1-request" }
//! ```
//!
//! For brevity, we refer to the crate name as `oauth` throughout the documentation,
Expand Down Expand Up @@ -88,7 +88,7 @@
//!
//! See [`Request`][oauth1_request_derive::Request] for more details on the derive macro.

#![doc(html_root_url = "https://docs.rs/oauth1-request/0.3.2")]
#![doc(html_root_url = "https://docs.rs/oauth1-request/0.4.0")]
#![deny(broken_intra_doc_links)]
#![warn(missing_docs, rust_2018_idioms)]

Expand Down

0 comments on commit 099bd67

Please sign in to comment.