Skip to content

Commit b9867c7

Browse files
publish new versions (#4)
Co-authored-by: marekvospel <marekvospel@users.noreply.github.com>
1 parent 1249698 commit b9867c7

9 files changed

+19
-23
lines changed

.changes/feat-add-reaction-roles.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

.changes/feat-make-workshop-response-ephemeral.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

.changes/feat-move-guild-config-into-its-section.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

.changes/fix-read-env-at-macro-runtime.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/fix-remove-privileged-intents.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## \[0.2.0]
4+
5+
- Added reaction roles interaction handler.
6+
- [32be324](https://github.com/SSPS-KB/workshop-bot/commit/32be324861f6380497eea0cae3371084f5ab55f8) feat: add reaction roles, make some responses ephemeral on 2023-02-07
7+
- Made the `/workshop` command's responses ephemeral, so if used in global channels users can't see it.
8+
- [32be324](https://github.com/SSPS-KB/workshop-bot/commit/32be324861f6380497eea0cae3371084f5ab55f8) feat: add reaction roles, make some responses ephemeral on 2023-02-07
9+
- Added per-guild configuration for automove. See Config.example.toml
10+
- [011a2ad](https://github.com/SSPS-KB/workshop-bot/commit/011a2ade3ca5b4547dda995fe0b0befe82c3568a) feat: move guild config into its own section on 2023-02-06
11+
- Use only `GatewayIntents::GUILD_VOICE_STATES`, because message intents are not used by this bot.
12+
- [3450bf7](https://github.com/SSPS-KB/workshop-bot/commit/3450bf71b51d96018f1419b119cad1f6a0e322b6) fix: remove privileded intents on 2023-02-06
13+
314
## \[0.1.0]
415

516
- Add initial changelog

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lib = { }
22

33
[package]
44
name = "workshop-bot"
5-
version = "0.1.0"
5+
version = "0.2.0"
66
edition = "2021"
77
publish = false
88

crates/i18n/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[0.1.1]
4+
5+
- Instead of using the `env!` macro with `CARGO_MANIFEST_DIR`, which returned the static string of `/path/to/crates/i18n`,
6+
read this variable at macro runtime to match crate dir.
7+
- [8bc018b](https://github.com/SSPS-KB/workshop-bot/commit/8bc018bd7a51dab823f3281d56e2cde6f58f84ed) fix: read env at macro runtime on 2023-02-06
8+
39
## \[0.1.0]
410

511
- Add initial changelog

crates/i18n/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "i18n"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
publish = false
66

0 commit comments

Comments
 (0)