Skip to content

Commit 8dba1dc

Browse files
committed
Bump to v0.6.0
1 parent dc4799f commit 8dba1dc

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Add this to your `Cargo.toml`:
1212

1313
```toml
1414
[dependencies]
15-
oauth = { version = "0.5", package = "oauth1-request" }
15+
oauth = { version = "0.6", package = "oauth1-request" }
1616
```
1717

1818
A typical authorization flow looks like this:

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ http-body = "0.4"
3131
hyper = { version = "0.14", features = ["client", "http1", "runtime", "server", "stream"] }
3232
log = "0.4"
3333
nom = "6"
34-
oauth = { version = "0.5", package = "oauth1-request" }
34+
oauth = { version = "0.6", package = "oauth1-request" }
3535
oauth-credentials = { version = "0.3", features = ["serde"] }
3636
percent-encoding = "2"
3737
pin-project = "1"

oauth1-request-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ quote = "1"
2222
syn = { version = "1", features = ["full"] }
2323

2424
[dev-dependencies]
25-
oauth1-request = { version = "0.5", default-features = false, features = ["alloc", "derive", "test"] }
25+
oauth1-request = { version = "0.6", default-features = false, features = ["alloc", "derive", "test"] }
2626
trybuild = "1"
2727
version-sync = "0.9"

oauth1-request/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oauth1-request"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
edition = "2018"
55
authors = ["Daiki Mizukami <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -9,7 +9,7 @@ keywords = ["oauth", "oauth1"]
99
categories = ["authentication"]
1010
homepage = "https://github.com/tesaguri/oauth1-request-rs"
1111
repository = "https://github.com/tesaguri/oauth1-request-rs"
12-
documentation = "https://docs.rs/oauth1-request/0.5.1/oauth1_request/"
12+
documentation = "https://docs.rs/oauth1-request/0.6.0/oauth1_request/"
1313
description = """
1414
Yet yet yet another OAuth 1.0 client library.
1515
"""
@@ -50,7 +50,7 @@ js-sys = { version = "0.3", optional = true }
5050
[dev-dependencies]
5151
base64 = "0.13"
5252
# Trick to make `proc-macro-crate` work in doctests.
53-
oauth1-request = { version = "0.5", path = "", default-features = false }
53+
oauth1-request = { version = "0.6", path = "", default-features = false }
5454
version-sync = "0.9"
5555

5656
[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dev-dependencies]

oauth1-request/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//!
77
//! ```toml
88
//! [dependencies]
9-
//! oauth = { version = "0.5", package = "oauth1-request" }
9+
//! oauth = { version = "0.6", package = "oauth1-request" }
1010
//! ```
1111
//!
1212
//! For brevity, we refer to the crate name as `oauth` throughout the documentation,
@@ -115,7 +115,7 @@
115115
//! ```
116116
117117
#![cfg_attr(docsrs, feature(doc_cfg))]
118-
#![doc(html_root_url = "https://docs.rs/oauth1-request/0.5.1")]
118+
#![doc(html_root_url = "https://docs.rs/oauth1-request/0.6.0")]
119119
#![warn(missing_docs, rust_2018_idioms)]
120120
#![cfg_attr(not(feature = "std"), no_std)]
121121

0 commit comments

Comments
 (0)