Skip to content

Commit af0f81d

Browse files
committed
Bump to v0.6.1
1 parent 45caa62 commit af0f81d

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

oauth1-request-derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
name = "oauth1-request-derive"
33
edition = "2018"
44
rust-version = "1.46.0"
5-
version = "0.5.0"
5+
version = "0.5.1"
66
authors = ["Daiki Mizukami <[email protected]>"]
77
license = "MIT OR Apache-2.0"
88
homepage = "https://github.com/tesaguri/oauth1-request-rs"
99
repository = "https://github.com/tesaguri/oauth1-request-rs"
10-
documentation = "https://docs.rs/oauth1-request-derive/0.5.0/oauth1_request_derive/"
10+
documentation = "https://docs.rs/oauth1-request-derive/0.5.1/oauth1_request_derive/"
1111
description = """
1212
A derive macro for `oauth1_request::Request` trait.
1313
"""

oauth1-request-derive/src/lib.rs

Lines changed: 4 additions & 4 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.5/oauth1_request/trait.Request.html
5+
//! [Request]: https://docs.rs/oauth1-request/0.6/oauth1_request/trait.Request.html
66
//!
77
//! ```
88
//! # extern crate oauth1_request as oauth;
@@ -14,7 +14,7 @@
1414
//! is enabled (which is on by default).
1515
//! You should use the re-export instead of depending on this crate directly.
1616
17-
#![doc(html_root_url = "https://docs.rs/oauth1-request-derive/0.5.0")]
17+
#![doc(html_root_url = "https://docs.rs/oauth1-request-derive/0.5.1")]
1818

1919
#[macro_use]
2020
mod meta;
@@ -40,11 +40,11 @@ use self::method_body::MethodBody;
4040

4141
/// A derive macro for [`oauth1_request::Request`][Request] trait.
4242
///
43-
/// [Request]: https://docs.rs/oauth1-request/0.5/oauth1_request/trait.Request.html
43+
/// [Request]: https://docs.rs/oauth1-request/0.6/oauth1_request/trait.Request.html
4444
///
4545
/// See the [documentation] on the `oauth1_request` crate.
4646
///
47-
/// [documentation]: https://docs.rs/oauth1-request/0.5/oauth1_request/derive.Request.html
47+
/// [documentation]: https://docs.rs/oauth1-request/0.6/oauth1_request/derive.Request.html
4848
#[proc_macro_error]
4949
#[proc_macro_derive(Request, attributes(oauth1))]
5050
pub fn derive_oauth1_authorize(input: proc_macro::TokenStream) -> proc_macro::TokenStream {

oauth1-request/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oauth1-request"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
edition = "2018"
55
rust-version = "1.46.0"
66
authors = ["Daiki Mizukami <[email protected]>"]
@@ -10,7 +10,7 @@ keywords = ["oauth", "oauth1"]
1010
categories = ["authentication"]
1111
homepage = "https://github.com/tesaguri/oauth1-request-rs"
1212
repository = "https://github.com/tesaguri/oauth1-request-rs"
13-
documentation = "https://docs.rs/oauth1-request/0.6.0/oauth1_request/"
13+
documentation = "https://docs.rs/oauth1-request/0.6.1/oauth1_request/"
1414
description = """
1515
Yet yet yet another OAuth 1.0 client library.
1616
"""

oauth1-request/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
//! ```
116116
117117
#![cfg_attr(docsrs, feature(doc_cfg))]
118-
#![doc(html_root_url = "https://docs.rs/oauth1-request/0.6.0")]
118+
#![doc(html_root_url = "https://docs.rs/oauth1-request/0.6.1")]
119119
#![warn(missing_docs, rust_2018_idioms)]
120120
#![cfg_attr(not(feature = "std"), no_std)]
121121

0 commit comments

Comments
 (0)