Skip to content

Commit

Permalink
release twitch_api 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Emilgardis committed Jan 18, 2025
1 parent 8dbaddc commit 9f4f6cd
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

## [Unreleased] - ReleaseDate

[Commits](https://github.com/twitch-rs/twitch_api/compare/v0.6.1...Unreleased)
[Commits](https://github.com/twitch-rs/twitch_api/compare/v0.7.0...Unreleased)

## [v0.7.0] - 2025-01-18

[Commits](https://github.com/twitch-rs/twitch_api/compare/v0.6.1...v0.7.0)

### Breaking changes

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "twitch_api"
version = "0.7.0-rc.8"
version = "0.7.0"
authors = ["Emil Gardström <[email protected]>"]
edition = "2018"
repository = "https://github.com/twitch-rs/twitch_api"
license = "MIT OR Apache-2.0"
description = "Library for talking with the new Twitch API aka. \"Helix\", EventSub and more!"
keywords = ["oauth", "twitch", "async", "asynchronous", "api"]
documentation = "https://docs.rs/twitch_api/0.7.0-rc.8"
documentation = "https://docs.rs/twitch_api/0.7.0"
readme = "README.md"
resolver = "2"
include = [
Expand All @@ -27,7 +27,7 @@ members = ["xtask", "examples/*"]
exclude = ["twitch_types", "twitch_oauth2"]

[workspace.dependencies]
twitch_api = { version = "0.7.0-rc.8", path = "." }
twitch_api = { version = "0.7.0", path = "." }
twitch_oauth2 = { version = "0.15.1", path = "twitch_oauth2/" }
twitch_types = { version = "0.4.8", features = [
"serde",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Twitch API | Rust library for talking with the new Twitch API aka. "Helix", EventSub and more!

[![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)
[![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)

[github]: https://img.shields.io/badge/github-twitch--rs/twitch__api-8da0cb?style=for-the-badge&labelColor=555555&logo=github
[crates-io]: https://img.shields.io/crates/v/twitch_api.svg?style=for-the-badge&color=fc8d62&logo=rust
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#![cfg_attr(nightly, feature(doc_cfg))]
#![cfg_attr(nightly, feature(doc_auto_cfg))]
#![allow(clippy::needless_raw_string_hashes)]
#![doc(html_root_url = "https://docs.rs/twitch_api/0.7.0-rc.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)
#![doc(html_root_url = "https://docs.rs/twitch_api/0.7.0")]
//! [![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)
//!
//! [github]: https://img.shields.io/badge/github-twitch--rs/twitch__api-8da0cb?style=for-the-badge&labelColor=555555&logo=github"
//! [crates-io]: https://img.shields.io/crates/v/twitch_api.svg?style=for-the-badge&color=fc8d62&logo=rust"
Expand Down

0 comments on commit 9f4f6cd

Please sign in to comment.