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

Commit 8e8b500

Browse files
chore: bump version
1 parent beaf187 commit 8e8b500

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

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

3+
## v1.7 - Changes
4+
5+
- Add action that deploys changes on non major tag release
6+
- Fix bug when user doesn't have required permissions and uses a `/settings` command
37
## v1.6 - Changes
48

59
- Bump dependencies

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.6`
13+
Current version: `v1.7`
1414

1515
## License
1616

cogs/utils/db/startup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@
7777
"new_version": "v1.5.1",
7878
},
7979
"v1.5.1": {"query": None, "new_version": "v1.6"},
80-
"v1.6": {"query": None, "new_version": None},
80+
"v1.6": {"query": None, "new_version": "v1.7"},
81+
"v1.7": {"query": None, "new_version": None},
8182
}
8283

8384
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.6"
36+
__version__ = "v1.7"
3737

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

0 commit comments

Comments
 (0)