Skip to content

Commit 2b357ea

Browse files
committed
Bump to v0.3.0
1 parent cf57d9b commit 2b357ea

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ path = "src/signer.rs"
1717
bytes = "0.4"
1818
futures-preview = { version = "0.3.0-alpha.17" }
1919
hyper = "0.13.0-alpha.1"
20-
oauth = { version = "0.2", path = "../oauth1-request", package = "oauth1-request" }
20+
oauth = { version = "0.3", path = "../oauth1-request", package = "oauth1-request" }
2121
string = "0.2"
2222
tokio = "0.2.0-alpha.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.2.2"
4+
version = "0.3.0"
55
authors = ["Daiki Mizukami <tesaguriguma@gmail.com>"]
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.2.2/oauth1_request_derive/"
9+
documentation = "https://docs.rs/oauth1-request-derive/0.3.0/oauth1_request_derive/"
1010
description = """
1111
A derive macro for `oauth1_request::Authorize` trait.
1212
"""
@@ -22,6 +22,6 @@ syn = "1"
2222

2323
[dev-dependencies]
2424
compiletest = { version = "0.3", features = ["stable"], package = "compiletest_rs" }
25-
oauth = { version = "0.2.1", package = "oauth1-request" }
25+
oauth = { version = "0.3.0", package = "oauth1-request" }
2626
rustversion = "0.1"
2727
version-sync = "0.8"

oauth1-request-derive/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//!
1212
//! [Authorize]: https://docs.rs/oauth1-request/0.3/oauth1_request/authorize/trait.Authorize.html
1313
14-
#![doc(html_root_url = "https://docs.rs/oauth1-request-derive/0.2.2")]
14+
#![doc(html_root_url = "https://docs.rs/oauth1-request-derive/0.3.0")]
1515

1616
extern crate proc_macro;
1717

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ publish = false
77
[workspace]
88

99
[dependencies]
10-
oauth1-request = { version = "0.2", path = "../../oauth1-request", default-features = false }
11-
oauth1-request-derive = { version = "0.2", path = "../../oauth1-request-derive" }
10+
oauth1-request = { version = "0.3", path = "../../oauth1-request", default-features = false }
11+
oauth1-request-derive = { version = "0.3", path = "../../oauth1-request-derive" }

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.2.5"
3+
version = "0.3.0"
44
edition = "2018"
55
authors = ["Daiki Mizukami <tesaguriguma@gmail.com>"]
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.2.5/oauth1_request/"
12+
documentation = "https://docs.rs/oauth1-request/0.3.0/oauth1_request/"
1313
description = """
1414
Yet yet yet another OAuth 1 client library.
1515
"""
@@ -22,7 +22,7 @@ percent-encoding = "1"
2222
rand = "0.7"
2323

2424
# `derive` feature
25-
oauth1-request-derive = { version = "0.2", path = "../oauth1-request-derive", optional = true }
25+
oauth1-request-derive = { version = "0.3", path = "../oauth1-request-derive", optional = true }
2626

2727
# `hmac-sha1` feature
2828
either = { version = "1", optional = true }
@@ -31,7 +31,7 @@ sha-1 = { version = "0.8", optional = true }
3131

3232
[dev-dependencies]
3333
# Trick to make `proc-macro-crate` work in doctests.
34-
oauth1-request = { version = "0.2", path = "" }
34+
oauth1-request = { version = "0.3", path = "" }
3535
version-sync = "0.8"
3636

3737
[features]

oauth1-request/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
//!
109109
//! See [`Authorize`](trait.Authorize.html) for more details on the custom derive macro.
110110
111-
#![doc(html_root_url = "https://docs.rs/oauth1-request/0.2.5")]
111+
#![doc(html_root_url = "https://docs.rs/oauth1-request/0.3.0")]
112112

113113
pub mod authorize;
114114
pub mod signature_method;

0 commit comments

Comments
 (0)