Skip to content

Commit

Permalink
Bump oauth-credentials to v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tesaguri committed Jan 11, 2021
1 parent 3cf4e2c commit 4a397b0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ hyper = { version = "0.14", features = ["client", "http1", "runtime", "server",
log = "0.4"
nom = "6"
oauth = { version = "0.4", package = "oauth1-request" }
oauth-credentials = { version = "0.2", features = ["serde"] }
oauth-credentials = { version = "0.3", features = ["serde"] }
percent-encoding = "2"
pin-project = "1"
serde = { version = "1", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions oauth-credentials/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "oauth-credentials"
version = "0.2.1"
version = "0.3.0"
authors = ["Daiki Mizukami <tesaguriguma@gmail.com>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["oauth", "oauth1"]
categories = ["authentication"]
repository = "https://github.com/tesaguri/oauth1-request-rs"
documentation = "https://docs.rs/oauth-credentials/0.2.1/oauth_credentials/"
documentation = "https://docs.rs/oauth-credentials/0.3.0/oauth_credentials/"
description = """
Types for representing the credential pairs of OAuth 1.0.
"""
Expand Down
5 changes: 2 additions & 3 deletions oauth-credentials/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@

The goal of `oauth-credentials` is to provide a stable foundation for OAuth implementations.

The crate is still unstable in the sense of Semantic Versioning. ~However, we are not planning to
The crate is still unstable in the sense of Semantic Versioning. However, we are not planning to
make any breaking change and are going to publish the API as it is as version 1.0.0 using the
[semver trick] unless we find a flaw in the API significant enough to justify a breaking change.~
Update: Version 0.3 will contain a breaking change. See [#5] for details.
[semver trick] unless we find a flaw in the API significant enough to justify a breaking change.

[semver trick]: https://github.com/dtolnay/semver-trick
[#5]: https://github.com/tesaguri/oauth1-request-rs/pull/5
Expand Down
2 changes: 1 addition & 1 deletion oauth-credentials/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//!
//! [rfc]: https://tools.ietf.org/html/rfc5849#section-1.1
#![doc(html_root_url = "https://docs.rs/oauth-credentials/0.2.1")]
#![doc(html_root_url = "https://docs.rs/oauth-credentials/0.3.0")]
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
#![cfg_attr(feature = "cargo-clippy", allow(redundant_field_names))]
#![cfg_attr(feature = "cargo-clippy", allow(redundant_static_lifetimes))]
Expand Down
2 changes: 1 addition & 1 deletion oauth1-request/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Yet yet yet another OAuth 1 client library.
base64 = "0.13"
bitflags = "1"
cfg-if = "1"
oauth-credentials = "0.2"
oauth-credentials = "0.3"
percent-encoding = "2.1"
rand = "0.8"

Expand Down

0 comments on commit 4a397b0

Please sign in to comment.