Skip to content

Commit b94ad9f

Browse files
Merge #92
92: Release v0.7.1 r=Emilgardis a=Emilgardis Co-authored-by: Emil Gardström <emil.gardstrom@gmail.com>
2 parents b68f587 + 037aa30 commit b94ad9f

File tree

6 files changed

+16
-12
lines changed

6 files changed

+16
-12
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@
44

55
## [Unreleased] - ReleaseDate
66

7-
[Commits](https://github.com/twitch-rs/twitch_oauth2/compare/v0.7.0...Unreleased)
7+
[Commits](https://github.com/twitch-rs/twitch_oauth2/compare/v0.7.1...Unreleased)
88

9-
## Changed
9+
## [v0.7.1] - 2022-08-27
10+
11+
[Commits](https://github.com/twitch-rs/twitch_oauth2/compare/v0.7.0...v0.7.1)
12+
13+
### Changed
1014

1115
* Organization moved to `twitch-rs`
1216

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "twitch_oauth2"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
edition = "2021"
55
repository = "https://github.com/twitch-rs/twitch_oauth2"
66
license = "MIT OR Apache-2.0"
77
description = "Oauth2 for Twitch endpoints"
88
keywords = ["oauth", "twitch", "async", "asynchronous"]
9-
documentation = "https://docs.rs/twitch_oauth2/0.7.0"
9+
documentation = "https://docs.rs/twitch_oauth2/0.7.1"
1010
readme = "README.md"
1111

1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Twitch OAuth2 | OAuth2 for Twitch endpoints
22
============================================
33

4-
[![github]](https://github.com/twitch-rs/twitch_oauth2)&ensp;[![crates-io]](https://crates.io/crates/twitch_oauth2)&ensp;[![docs-rs]](https://docs.rs/twitch_oauth2/0.7.0/twitch_oauth2)
4+
[![github]](https://github.com/twitch-rs/twitch_oauth2)&ensp;[![crates-io]](https://crates.io/crates/twitch_oauth2)&ensp;[![docs-rs]](https://docs.rs/twitch_oauth2/0.7.1/twitch_oauth2)
55

66
[github]: https://img.shields.io/badge/github-twitch--rs/twitch__oauth2-8da0cb?style=for-the-badge&labelColor=555555&logo=github"
77
[crates-io]: https://img.shields.io/crates/v/twitch_oauth2.svg?style=for-the-badge&color=fc8d62&logo=rust"

release.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
no-dev-version = true
1+
dev-version = false
22
pre-release-commit-message = "release {{crate_name}} {{version}}"
3-
disable-tag = true
4-
disable-push = true
5-
disable-publish = true
3+
tag = false
4+
push = false
5+
publish = false
66
enable-features = ["all", "unsupported"]
77
pre-release-replacements = [
88
{file="CHANGELOG.md", search="Unreleased", replace="v{{version}}", prerelease=false},

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#![deny(missing_docs, broken_intra_doc_links)] // This will be weird until 1.52, see https://github.com/rust-lang/rust/pull/80527
33
#![cfg_attr(nightly, deny(rustdoc::broken_intra_doc_links))]
44
#![cfg_attr(nightly, feature(doc_cfg))]
5-
#![doc(html_root_url = "https://docs.rs/twitch_oauth2/0.7.0")]
6-
//! [![github]](https://github.com/twitch-rs/twitch_oauth2)&ensp;[![crates-io]](https://crates.io/crates/twitch_oauth2)&ensp;[![docs-rs]](https://docs.rs/twitch_oauth2/0.7.0/twitch_oauth2)
5+
#![doc(html_root_url = "https://docs.rs/twitch_oauth2/0.7.1")]
6+
//! [![github]](https://github.com/twitch-rs/twitch_oauth2)&ensp;[![crates-io]](https://crates.io/crates/twitch_oauth2)&ensp;[![docs-rs]](https://docs.rs/twitch_oauth2/0.7.1/twitch_oauth2)
77
//!
88
//! [github]: https://img.shields.io/badge/github-twitch--rs/twitch__oauth2-8da0cb?style=for-the-badge&labelColor=555555&logo=github"
99
//! [crates-io]: https://img.shields.io/crates/v/twitch_oauth2.svg?style=for-the-badge&color=fc8d62&logo=rust"

0 commit comments

Comments
 (0)