5 Commits

Author SHA1 Message Date
Michał Czyż
09a644cc03 Merge 209a942d63 into c27d1f70da 2024-08-15 20:15:58 +02:00
Michał Czyż
209a942d63 chore: release 2024-08-15 20:15:56 +02:00
c27d1f70da chore: version bump to 0.10.5
Some checks are pending
Rust / build (push) Waiting to run
Release Plz / Release-plz (push) Waiting to run
2024-08-15 20:13:42 +02:00
73b885e5d6 fix: version requirements for crates.io 2024-08-15 20:11:35 +02:00
8c0eb62d41 fix: yt-dlp errors 2024-08-15 20:05:52 +02:00
3 changed files with 11 additions and 7 deletions

View File

@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.10.6](https://github.com/eRgo35/lyra/compare/v0.10.5...v0.10.6) - 2024-08-15
### Other
- update Cargo.lock dependencies
## [0.10.4](https://github.com/eRgo35/lyra/compare/v0.10.3...v0.10.4) - 2024-08-13 ## [0.10.4](https://github.com/eRgo35/lyra/compare/v0.10.3...v0.10.4) - 2024-08-13
### Fixed ### Fixed

7
Cargo.lock generated
View File

@@ -1311,7 +1311,7 @@ dependencies = [
[[package]] [[package]]
name = "lyra" name = "lyra"
version = "0.10.4" version = "0.10.6"
dependencies = [ dependencies = [
"dotenv", "dotenv",
"json", "json",
@@ -2788,9 +2788,8 @@ dependencies = [
[[package]] [[package]]
name = "songbird" name = "songbird"
version = "0.4.3" version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/eRgo35/songbird#64a9b6ba5e591a1324390aa896b661633f4baa24"
checksum = "338dd182f9f084f583c4c0db38588e28a34778ecec288208cf0b61c378ac90d1"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"audiopus", "audiopus",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "lyra" name = "lyra"
version = "0.10.4" version = "0.10.6"
authors = ["Michał Czyż <mike@c2yz.com>"] authors = ["Michał Czyż <mike@c2yz.com>"]
edition = "2021" edition = "2021"
description = "A featureful Discord bot written in Rust." description = "A featureful Discord bot written in Rust."
@@ -23,9 +23,9 @@ regex = "1.10.6"
reqwest = { version = "0.11.27", features = ["json"] } reqwest = { version = "0.11.27", features = ["json"] }
serde = { version = "1.0.204", features = ["derive"] } serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.122" serde_json = "1.0.122"
songbird = { version = "0.4.3", default-features = true, features = [ songbird = { version = "~0.4.3", default-features = true, features = [
"builtin-queue", "builtin-queue",
] } ], git = "https://github.com/eRgo35/songbird" }
serenity = { default-features = true, features = [ serenity = { default-features = true, features = [
"cache", "cache",
"framework", "framework",