Skip to content

Commit 37b6500

Browse files
committed
release twitch_api 0.7.0
1 parent df2eaa1 commit 37b6500

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44

55
## [Unreleased] - ReleaseDate
66

7-
[Commits](https://github.com/twitch-rs/twitch_api/compare/v0.6.1...Unreleased)
7+
[Commits](https://github.com/twitch-rs/twitch_api/compare/v0.7.0...Unreleased)
8+
9+
## [v0.7.0] - 2025-01-22
10+
11+
[Commits](https://github.com/twitch-rs/twitch_api/compare/v0.6.1...v0.7.0)
812

913
### Breaking changes
1014

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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "twitch_api"
3-
version = "0.7.0-rc.8"
3+
version = "0.7.0"
44
authors = ["Emil Gardström <emil.gardstrom@gmail.com>"]
55
edition = "2018"
66
repository = "https://github.com/twitch-rs/twitch_api"
77
license = "MIT OR Apache-2.0"
88
description = "Library for talking with the new Twitch API aka. \"Helix\", EventSub and more!"
99
keywords = ["oauth", "twitch", "async", "asynchronous", "api"]
10-
documentation = "https://docs.rs/twitch_api/0.7.0-rc.8"
10+
documentation = "https://docs.rs/twitch_api/0.7.0"
1111
readme = "README.md"
1212
resolver = "2"
1313
include = [
@@ -27,7 +27,7 @@ members = ["xtask", "examples/*"]
2727
exclude = ["twitch_types", "twitch_oauth2"]
2828

2929
[workspace.dependencies]
30-
twitch_api = { version = "0.7.0-rc.8", path = "." }
30+
twitch_api = { version = "0.7.0", path = "." }
3131
twitch_oauth2 = { version = "0.15.1", path = "twitch_oauth2/" }
3232
twitch_types = { version = "0.4.8", features = [
3333
"serde",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Twitch API | Rust library for talking with the new Twitch API aka. "Helix", EventSub and more!
22

3-
[![github]](https://github.com/twitch-rs/twitch_api)&ensp;[![crates-io]](https://crates.io/crates/twitch_api)&ensp;[![docs-rs-big]](https://docs.rs/twitch_api/0.7.0-rc.8/twitch_api/)&ensp;[![discord]](https://discord.gg/7APWQeEmnK)
3+
[![github]](https://github.com/twitch-rs/twitch_api)&ensp;[![crates-io]](https://crates.io/crates/twitch_api)&ensp;[![docs-rs-big]](https://docs.rs/twitch_api/0.7.0/twitch_api/)&ensp;[![discord]](https://discord.gg/7APWQeEmnK)
44

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

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
#![cfg_attr(nightly, feature(doc_cfg))]
55
#![cfg_attr(nightly, feature(doc_auto_cfg))]
66
#![allow(clippy::needless_raw_string_hashes)]
7-
#![doc(html_root_url = "https://docs.rs/twitch_api/0.7.0-rc.8")]
8-
//! [![github]](https://github.com/twitch-rs/twitch_api)&ensp;[![crates-io]](https://crates.io/crates/twitch_api)&ensp;[![docs-rs-big]](https://docs.rs/twitch_api/0.7.0-rc.8/twitch_api)
7+
#![doc(html_root_url = "https://docs.rs/twitch_api/0.7.0")]
8+
//! [![github]](https://github.com/twitch-rs/twitch_api)&ensp;[![crates-io]](https://crates.io/crates/twitch_api)&ensp;[![docs-rs-big]](https://docs.rs/twitch_api/0.7.0/twitch_api)
99
//!
1010
//! [github]: https://img.shields.io/badge/github-twitch--rs/twitch__api-8da0cb?style=for-the-badge&labelColor=555555&logo=github"
1111
//! [crates-io]: https://img.shields.io/crates/v/twitch_api.svg?style=for-the-badge&color=fc8d62&logo=rust"

0 commit comments

Comments
 (0)