Skip to content
This repository was archived by the owner on Oct 24, 2022. It is now read-only.

Commit c78d7ae

Browse files
docs: bump version
1 parent 5a4a1bc commit c78d7ae

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

CHANGELOG.md

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

3+
## v1.6 - Changes
4+
5+
- Bump dependencies
6+
- Improve logger format (code logger)
7+
- Improve db migration
8+
- Typing fixes
9+
- Refactoring internals
10+
- Add slash commands for logging setting (`/settings get/set logging`)
11+
- Add security and contact info to readme
12+
- Update contributing templates
13+
- Implement caching for guild settings
14+
- Updated privacy policy
15+
- Make `/info` slash commands ephemeral
16+
17+
318
## v1.5.1 - Changes
419

520
- Slash commands:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
If you find a bug or if you want to make a feature request<!--, either join the [discord server](https://discord.gg/xFZu29t) or --> open an issue.
1111
If you want to contribute to the docs or the code of the bot feel free to open a pull request.
1212

13-
Current version: `v1.5.1`
13+
Current version: `v1.6`
1414

1515
## License
1616

cogs/utils/db/startup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@
7676
"query": "ALTER TABLE servers DROP COLUMN slash_enabled;",
7777
"new_version": "v1.5.1",
7878
},
79-
"v1.5.1": {"query": None, "new_version": None},
79+
"v1.5.1": {"query": None, "new_version": "v1.6"},
80+
"v1.6": {"query": None, "new_version": None},
8081
}
8182

8283
create_db = """

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
from cogs.utils import Context, PartialGuildCache
3434
from cogs.utils.db import db
3535

36-
__version__ = "v1.5.1"
36+
__version__ = "v1.6"
3737

3838
if TYPE_CHECKING:
3939
BotBase = commands.Bot[Context]

0 commit comments

Comments
 (0)