Skip to content

Commit

Permalink
Bump to v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tesaguri committed Jun 12, 2022
1 parent dc4799f commit 8dba1dc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
oauth = { version = "0.5", package = "oauth1-request" }
oauth = { version = "0.6", package = "oauth1-request" }
```

A typical authorization flow looks like this:
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ http-body = "0.4"
hyper = { version = "0.14", features = ["client", "http1", "runtime", "server", "stream"] }
log = "0.4"
nom = "6"
oauth = { version = "0.5", package = "oauth1-request" }
oauth = { version = "0.6", package = "oauth1-request" }
oauth-credentials = { version = "0.3", features = ["serde"] }
percent-encoding = "2"
pin-project = "1"
Expand Down
2 changes: 1 addition & 1 deletion oauth1-request-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ quote = "1"
syn = { version = "1", features = ["full"] }

[dev-dependencies]
oauth1-request = { version = "0.5", default-features = false, features = ["alloc", "derive", "test"] }
oauth1-request = { version = "0.6", default-features = false, features = ["alloc", "derive", "test"] }
trybuild = "1"
version-sync = "0.9"
6 changes: 3 additions & 3 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.5.1"
version = "0.6.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.5.1/oauth1_request/"
documentation = "https://docs.rs/oauth1-request/0.6.0/oauth1_request/"
description = """
Yet yet yet another OAuth 1.0 client library.
"""
Expand Down Expand Up @@ -50,7 +50,7 @@ js-sys = { version = "0.3", optional = true }
[dev-dependencies]
base64 = "0.13"
# Trick to make `proc-macro-crate` work in doctests.
oauth1-request = { version = "0.5", path = "", default-features = false }
oauth1-request = { version = "0.6", path = "", default-features = false }
version-sync = "0.9"

[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions oauth1-request/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//!
//! ```toml
//! [dependencies]
//! oauth = { version = "0.5", package = "oauth1-request" }
//! oauth = { version = "0.6", package = "oauth1-request" }
//! ```
//!
//! For brevity, we refer to the crate name as `oauth` throughout the documentation,
Expand Down Expand Up @@ -115,7 +115,7 @@
//! ```

#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(html_root_url = "https://docs.rs/oauth1-request/0.5.1")]
#![doc(html_root_url = "https://docs.rs/oauth1-request/0.6.0")]
#![warn(missing_docs, rust_2018_idioms)]
#![cfg_attr(not(feature = "std"), no_std)]

Expand Down

0 comments on commit 8dba1dc

Please sign in to comment.