Skip to content

Commit 099bd67

Browse files
committed
Bump to v0.4.0
1 parent c994ccd commit 099bd67

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Add this to your `Cargo.toml`:
1212

1313
```toml
1414
[dependencies]
15-
oauth = { version = "0.3", package = "oauth1-request" }
15+
oauth = { version = "0.4", package = "oauth1-request" }
1616
```
1717

1818
A typical authorization flow looks like this:

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ http-body = "0.3"
2828
hyper = { version = "0.13", features = ["stream"] }
2929
log = "0.4"
3030
nom = "=6.0.0-alpha3"
31-
oauth = { version = "0.3", package = "oauth1-request" }
31+
oauth = { version = "0.4", package = "oauth1-request" }
3232
oauth-credentials = { version = "0.1", features = ["serde"] }
3333
percent-encoding = "2"
3434
pin-project = "1"

oauth1-request-derive/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "oauth1-request-derive"
33
edition = "2018"
4-
version = "0.3.3"
4+
version = "0.4.0"
55
authors = ["Daiki Mizukami <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
homepage = "https://github.com/tesaguri/oauth1-request-rs"
88
repository = "https://github.com/tesaguri/oauth1-request-rs"
9-
documentation = "https://docs.rs/oauth1-request-derive/0.3.3/oauth1_request_derive/"
9+
documentation = "https://docs.rs/oauth1-request-derive/0.4.0/oauth1_request_derive/"
1010
description = """
1111
A derive macro for `oauth1_request::Request` trait.
1212
"""
@@ -23,5 +23,5 @@ syn = { version = "1", features = ["full"] }
2323

2424
[dev-dependencies]
2525
compiletest = { version = "0.5", package = "compiletest_rs" }
26-
oauth = { version = "0.3.0", package = "oauth1-request" }
26+
oauth = { version = "0.4", package = "oauth1-request" }
2727
version-sync = "0.9"

oauth1-request-derive/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
//! This crate provides a derive macro for [`oauth1_request::Request`][Request]:
44
//!
5-
//! [Request]: https://docs.rs/oauth1-request/0.3/oauth1_request/trait.Request.html
5+
//! [Request]: https://docs.rs/oauth1-request/0.4/oauth1_request/trait.Request.html
66
//!
77
//! ```
88
//! #[derive(oauth::Request)]
@@ -13,7 +13,7 @@
1313
//! is enabled (which is on by default).
1414
//! You should use the re-export instead of depending on this crate directly.
1515
16-
#![doc(html_root_url = "https://docs.rs/oauth1-request-derive/0.3.3")]
16+
#![doc(html_root_url = "https://docs.rs/oauth1-request-derive/0.4.0")]
1717

1818
#[allow(unused_extern_crates)]
1919
extern crate proc_macro;

oauth1-request-derive/test-deps/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ publish = false
77
[workspace]
88

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

1212
[patch.crates-io]
1313
oauth-credentials = { path = "../../oauth-credentials" }

oauth1-request/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oauth1-request"
3-
version = "0.3.2"
3+
version = "0.4.0"
44
edition = "2018"
55
authors = ["Daiki Mizukami <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -9,7 +9,7 @@ keywords = ["oauth", "oauth1"]
99
categories = ["authentication"]
1010
homepage = "https://github.com/tesaguri/oauth1-request-rs"
1111
repository = "https://github.com/tesaguri/oauth1-request-rs"
12-
documentation = "https://docs.rs/oauth1-request/0.3.2/oauth1_request/"
12+
documentation = "https://docs.rs/oauth1-request/0.4.0/oauth1_request/"
1313
description = """
1414
Yet yet yet another OAuth 1 client library.
1515
"""
@@ -23,7 +23,7 @@ percent-encoding = "2"
2323
rand = "0.7"
2424

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

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

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

3838
[features]

oauth1-request/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//!
77
//! ```toml
88
//! [dependencies]
9-
//! oauth = { version = "0.3", package = "oauth1-request" }
9+
//! oauth = { version = "0.4", package = "oauth1-request" }
1010
//! ```
1111
//!
1212
//! For brevity, we refer to the crate name as `oauth` throughout the documentation,
@@ -88,7 +88,7 @@
8888
//!
8989
//! See [`Request`][oauth1_request_derive::Request] for more details on the derive macro.
9090
91-
#![doc(html_root_url = "https://docs.rs/oauth1-request/0.3.2")]
91+
#![doc(html_root_url = "https://docs.rs/oauth1-request/0.4.0")]
9292
#![deny(broken_intra_doc_links)]
9393
#![warn(missing_docs, rust_2018_idioms)]
9494

0 commit comments

Comments
 (0)