Skip to content

Commit

Permalink
chore(version): Bump version to v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jontze committed Feb 6, 2023
1 parent 539bb69 commit e1ed8c0
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions cadency/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cadency"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
description = "An extensible discord bot with support with music commands"
license = "MIT"
Expand All @@ -14,11 +14,11 @@ log = "0.4.17"

[dependencies.cadency_core]
path = "../cadency_core"
version = "0.3.0"
version = "0.3.1"

[dependencies.cadency_commands]
path = "../cadency_commands"
version = "0.3.0"
version = "0.3.1"

[dependencies.tokio]
version = "1.25.0"
Expand Down
2 changes: 1 addition & 1 deletion cadency_codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cadency_codegen"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
description = "Library with codegen macros for the cadency discord bot"
license = "MIT"
Expand Down
8 changes: 4 additions & 4 deletions cadency_commands/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cadency_commands"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
description = "Library with a collection of some commands for the cadency discord bot"
license = "MIT"
Expand All @@ -27,15 +27,15 @@ features = ["builtin-queue", "yt-dlp"]

[dependencies.cadency_core]
path = "../cadency_core"
version = "0.3.0"
version = "0.3.1"

[dependencies.cadency_codegen]
path = "../cadency_codegen"
version = "0.3.0"
version = "0.3.1"

[dependencies.cadency_yt_playlist]
path = "../cadency_yt_playlist"
version = "0.3.0"
version = "0.3.1"

[dev-dependencies.tokio]
version = "1.25.0"
Expand Down
2 changes: 1 addition & 1 deletion cadency_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cadency_core"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
description = "Library with the core logic for the cadency discord bot"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion cadency_yt_playlist/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cadency_yt_playlist"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
description = "Library of the cadency discord bot to interact with youtube playlists"
license = "MIT"
Expand Down
10 changes: 5 additions & 5 deletions examples/custom_commands/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "custom_commands"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
description = "An example how to integrate custom commands into cadency_rs"
license = "MIT"
Expand All @@ -22,16 +22,16 @@ features = ["client", "gateway", "rustls_backend", "model", "voice", "cache"]

[dependencies.cadency_core]
path = "../../cadency_core"
version = "0.3.0"
version = "0.3.1"

[dependencies.cadency_codegen]
path = "../../cadency_codegen"
version = "0.3.0"
version = "0.3.1"

[dependencies.cadency_commands]
path = "../../cadency_commands"
version = "0.3.0"
version = "0.3.1"

[dependencies.tokio]
version = "1.25.0"
features = ["macros", "rt-multi-thread"]
features = ["macros", "rt-multi-thread"]

0 comments on commit e1ed8c0

Please sign in to comment.