Skip to content

Commit

Permalink
Bump to v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tesaguri committed Jun 19, 2024
1 parent 45caa62 commit af0f81d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions oauth1-request-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[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.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.
"""
Expand Down
8 changes: 4 additions & 4 deletions oauth1-request-derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand All @@ -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 {
Expand Down
4 changes: 2 additions & 2 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.6.0"
version = "0.6.1"
edition = "2018"
rust-version = "1.46.0"
authors = ["Daiki Mizukami <[email protected]>"]
Expand All @@ -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.
"""
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 @@ -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)]

Expand Down

0 comments on commit af0f81d

Please sign in to comment.