Skip to content

Commit 4dbf279

Browse files
committed
Bump version to 3.0.0rc1
Signed-off-by: Toby Harradine <[email protected]>
1 parent 03892f5 commit 4dbf279

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

redbot/core/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
class VersionInfo:
77
def __init__(self, major, minor, micro, releaselevel, serial):
8-
self._levels = ["alpha", "beta", "final"]
8+
self._levels = ["alpha", "beta", "release candidate", "final"]
99
self.major = major
1010
self.minor = minor
1111
self.micro = micro
@@ -36,5 +36,5 @@ def to_json(self):
3636
return [self.major, self.minor, self.micro, self.releaselevel, self.serial]
3737

3838

39-
__version__ = "3.0.0b21"
40-
version_info = VersionInfo(3, 0, 0, "beta", 21)
39+
__version__ = "3.0.0rc1"
40+
version_info = VersionInfo(3, 0, 0, "release candidate", 1)

redbot/core/cli.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,10 @@ def interactive_config(red, token_set, prefix_set):
5050
def ask_sentry(red: Red):
5151
loop = asyncio.get_event_loop()
5252
print(
53-
"\nThank you for installing Red V3 beta! The current version\n"
54-
" is not suited for production use and is aimed at testing\n"
55-
" the current and upcoming featureset, that's why we will\n"
56-
" also collect the fatal error logs to help us fix any new\n"
57-
" found issues in a timely manner. If you wish to opt in\n"
58-
' the process please type "yes":\n'
53+
"\nThank you for installing Red V3! Red is constantly undergoing\n"
54+
" improvements, and we would like ask if you are comfortable with\n"
55+
" the bot automatically submitting fatal error logs to the development\n"
56+
' team. If you wish to opt into the process please type "yes":\n'
5957
)
6058
if not confirm("> "):
6159
loop.run_until_complete(red.db.enable_sentry.set(False))

0 commit comments

Comments
 (0)