Skip to content

Commit

Permalink
Bump to v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tesaguri committed Sep 5, 2019
1 parent cf57d9b commit 2b357ea
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ path = "src/signer.rs"
bytes = "0.4"
futures-preview = { version = "0.3.0-alpha.17" }
hyper = "0.13.0-alpha.1"
oauth = { version = "0.2", path = "../oauth1-request", package = "oauth1-request" }
oauth = { version = "0.3", path = "../oauth1-request", package = "oauth1-request" }
string = "0.2"
tokio = "0.2.0-alpha.1"
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.2.2"
version = "0.3.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.2.2/oauth1_request_derive/"
documentation = "https://docs.rs/oauth1-request-derive/0.3.0/oauth1_request_derive/"
description = """
A derive macro for `oauth1_request::Authorize` trait.
"""
Expand All @@ -22,6 +22,6 @@ syn = "1"

[dev-dependencies]
compiletest = { version = "0.3", features = ["stable"], package = "compiletest_rs" }
oauth = { version = "0.2.1", package = "oauth1-request" }
oauth = { version = "0.3.0", package = "oauth1-request" }
rustversion = "0.1"
version-sync = "0.8"
2 changes: 1 addition & 1 deletion oauth1-request-derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
//!
//! [Authorize]: https://docs.rs/oauth1-request/0.3/oauth1_request/authorize/trait.Authorize.html
#![doc(html_root_url = "https://docs.rs/oauth1-request-derive/0.2.2")]
#![doc(html_root_url = "https://docs.rs/oauth1-request-derive/0.3.0")]

extern crate proc_macro;

Expand Down
4 changes: 2 additions & 2 deletions oauth1-request-derive/test-deps/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ publish = false
[workspace]

[dependencies]
oauth1-request = { version = "0.2", path = "../../oauth1-request", default-features = false }
oauth1-request-derive = { version = "0.2", path = "../../oauth1-request-derive" }
oauth1-request = { version = "0.3", path = "../../oauth1-request", default-features = false }
oauth1-request-derive = { version = "0.3", path = "../../oauth1-request-derive" }
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.2.5"
version = "0.3.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.2.5/oauth1_request/"
documentation = "https://docs.rs/oauth1-request/0.3.0/oauth1_request/"
description = """
Yet yet yet another OAuth 1 client library.
"""
Expand All @@ -22,7 +22,7 @@ percent-encoding = "1"
rand = "0.7"

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

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

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

[features]
Expand Down
2 changes: 1 addition & 1 deletion oauth1-request/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
//!
//! See [`Authorize`](trait.Authorize.html) for more details on the custom derive macro.
#![doc(html_root_url = "https://docs.rs/oauth1-request/0.2.5")]
#![doc(html_root_url = "https://docs.rs/oauth1-request/0.3.0")]

pub mod authorize;
pub mod signature_method;
Expand Down

0 comments on commit 2b357ea

Please sign in to comment.