Skip to content

Commit

Permalink
bump version to 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgauthier committed Jan 19, 2021
1 parent e2658fa commit 4dec8e1
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 0 deletions.
1 change: 1 addition & 0 deletions deploy/dotnet/entity-tracker/entity-tracker.env.template
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
DOTNET_ENVIRONMENT=Development
TaylorBot_DatabaseConnection__Username=
TaylorBot_DatabaseConnection__Password=
TaylorBot_RedisConnection__Password=
TaylorBot_Discord__Token=
14 changes: 14 additions & 0 deletions docs/release-notes/1.9.0_changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# TaylorBot Release Notes 📝
`v1.9.0` - `2021.01.18`

- Had an embarrassing old username you don't want people to see? It is now possible to use the **Usernames Private** and **Usernames Public** commands to configure the privacy of your username history on TaylorBot. When set to private, your username history won't be shown when users use the **Usernames** command for you. Changing this setting keeps your username history hidden, but keep in mind it might still be possible for someone to find your old usernames through Discord search, for example. 🏷️

- Get 20 or more users to **Heist** together to rob the newly added Evermore Federal Reserve! 🏦

- The **YouTube** command is now restricted to 10 uses per user per day. 🚦

- Fixed an issue where an unknown command error would occur when TaylorBot tried to give an accessible role that is higher in the hierarchy. 🐛

- Fixed an issue that caused **UserInfo** to be missing the username header. 🐛

- Lots of minor improvements and fixes. 📈
10 changes: 10 additions & 0 deletions src/taylorbot-postgres/deploy/0012_bump_version_1.9.0.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
-- Deploy taylorbot-postgres:0012_bump_version_1.9.0 to pg

BEGIN;

UPDATE configuration.application_info SET info_value = '1.9.0' WHERE info_key = 'product_version';

INSERT INTO commands.messages_of_the_day (message, priority_from, priority_to) VALUES
('TaylorBot 1.9.0 is out! You can now make your username history private with `{prefix}usernames private`!', timestamp with time zone '2021-01-18', timestamp with time zone '2020-01-20');

COMMIT;
11 changes: 11 additions & 0 deletions src/taylorbot-postgres/revert/0012_bump_version_1.9.0.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- Revert taylorbot-postgres:0012_bump_version_1.9.0 from pg

BEGIN;

UPDATE configuration.application_info SET info_value = '1.8.2' WHERE info_key = 'product_version';

DELETE FROM commands.messages_of_the_day WHERE
message = 'TaylorBot 1.9.0 is out! You can now make your username history private with `{prefix}usernames private`!'
;

COMMIT;
1 change: 1 addition & 0 deletions src/taylorbot-postgres/sqitch.plan
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@
0009_command_disabled_message 2020-11-28T19:06:22Z Adam Gauthier <[email protected]> # Change disabled command from boolean to text for disabled message
0010_bump_version_1.8.2 2020-12-02T01:23:16Z Adam Gauthier <[email protected]> # Bump product version to 1.8.2
0011_username_history_configuration 2021-01-13T04:17:51Z Adam Gauthier <[email protected]> # Add users.username_history_configuration for hide username history feature
0012_bump_version_1.9.0 2021-01-18T04:50:52Z Adam Gauthier <[email protected]> # Bump product version to 1.9.0
14 changes: 14 additions & 0 deletions src/taylorbot-postgres/verify/0012_bump_version_1.9.0.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
-- Verify taylorbot-postgres:0012_bump_version_1.9.0 on pg

BEGIN;

DO $$
BEGIN
ASSERT (SELECT info_value FROM configuration.application_info WHERE info_key = 'product_version') = '1.9.0';

ASSERT (SELECT EXISTS((SELECT FROM commands.messages_of_the_day WHERE
message = 'TaylorBot 1.9.0 is out! You can now make your username history private with `{prefix}usernames private`!'
)));
END $$;

ROLLBACK;

0 comments on commit 4dec8e1

Please sign in to comment.