From a477c248a8d464629c33a3122d8e8bd8c90a02b0 Mon Sep 17 00:00:00 2001 From: Daiki Mizukami Date: Wed, 19 Jun 2024 12:50:31 +0900 Subject: [PATCH] Bump to v0.6.1 --- oauth1-request-derive/Cargo.toml | 4 ++-- oauth1-request-derive/src/lib.rs | 8 ++++---- oauth1-request/Cargo.toml | 4 ++-- oauth1-request/src/lib.rs | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/oauth1-request-derive/Cargo.toml b/oauth1-request-derive/Cargo.toml index 285d3ec..5d16791 100644 --- a/oauth1-request-derive/Cargo.toml +++ b/oauth1-request-derive/Cargo.toml @@ -2,12 +2,12 @@ name = "oauth1-request-derive" edition = "2018" rust-version = "1.46.0" -version = "0.5.0" +version = "0.5.1" authors = ["Daiki Mizukami "] 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.5.0/oauth1_request_derive/" +documentation = "https://docs.rs/oauth1-request-derive/0.5.1/oauth1_request_derive/" description = """ A derive macro for `oauth1_request::Request` trait. """ diff --git a/oauth1-request-derive/src/lib.rs b/oauth1-request-derive/src/lib.rs index b814887..493b3e3 100644 --- a/oauth1-request-derive/src/lib.rs +++ b/oauth1-request-derive/src/lib.rs @@ -2,7 +2,7 @@ //! This crate provides a derive macro for [`oauth1_request::Request`][Request]: //! -//! [Request]: https://docs.rs/oauth1-request/0.5/oauth1_request/trait.Request.html +//! [Request]: https://docs.rs/oauth1-request/0.6/oauth1_request/trait.Request.html //! //! ``` //! # extern crate oauth1_request as oauth; @@ -14,7 +14,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.5.0")] +#![doc(html_root_url = "https://docs.rs/oauth1-request-derive/0.5.1")] #[macro_use] mod meta; @@ -40,11 +40,11 @@ use self::method_body::MethodBody; /// A derive macro for [`oauth1_request::Request`][Request] trait. /// -/// [Request]: https://docs.rs/oauth1-request/0.5/oauth1_request/trait.Request.html +/// [Request]: https://docs.rs/oauth1-request/0.6/oauth1_request/trait.Request.html /// /// See the [documentation] on the `oauth1_request` crate. /// -/// [documentation]: https://docs.rs/oauth1-request/0.5/oauth1_request/derive.Request.html +/// [documentation]: https://docs.rs/oauth1-request/0.6/oauth1_request/derive.Request.html #[proc_macro_error] #[proc_macro_derive(Request, attributes(oauth1))] pub fn derive_oauth1_authorize(input: proc_macro::TokenStream) -> proc_macro::TokenStream { diff --git a/oauth1-request/Cargo.toml b/oauth1-request/Cargo.toml index 6634e6b..ba23c48 100644 --- a/oauth1-request/Cargo.toml +++ b/oauth1-request/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oauth1-request" -version = "0.6.0" +version = "0.6.1" edition = "2018" rust-version = "1.46.0" authors = ["Daiki Mizukami "] @@ -10,7 +10,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.6.0/oauth1_request/" +documentation = "https://docs.rs/oauth1-request/0.6.1/oauth1_request/" description = """ Yet yet yet another OAuth 1.0 client library. """ diff --git a/oauth1-request/src/lib.rs b/oauth1-request/src/lib.rs index 4e80550..397cca1 100644 --- a/oauth1-request/src/lib.rs +++ b/oauth1-request/src/lib.rs @@ -115,7 +115,7 @@ //! ``` #![cfg_attr(docsrs, feature(doc_cfg))] -#![doc(html_root_url = "https://docs.rs/oauth1-request/0.6.0")] +#![doc(html_root_url = "https://docs.rs/oauth1-request/0.6.1")] #![warn(missing_docs, rust_2018_idioms)] #![cfg_attr(not(feature = "std"), no_std)]