From 4dbf2796c06b8678001a6d773af5f3fdbad598cf Mon Sep 17 00:00:00 2001 From: Toby Harradine Date: Sat, 6 Oct 2018 10:26:59 +1000 Subject: [PATCH] Bump version to 3.0.0rc1 Signed-off-by: Toby Harradine --- redbot/core/__init__.py | 6 +++--- redbot/core/cli.py | 10 ++++------ 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/redbot/core/__init__.py b/redbot/core/__init__.py index d8986f805..dbba4f8e0 100644 --- a/redbot/core/__init__.py +++ b/redbot/core/__init__.py @@ -5,7 +5,7 @@ __all__ = ["Config", "__version__"] class VersionInfo: def __init__(self, major, minor, micro, releaselevel, serial): - self._levels = ["alpha", "beta", "final"] + self._levels = ["alpha", "beta", "release candidate", "final"] self.major = major self.minor = minor self.micro = micro @@ -36,5 +36,5 @@ class VersionInfo: return [self.major, self.minor, self.micro, self.releaselevel, self.serial] -__version__ = "3.0.0b21" -version_info = VersionInfo(3, 0, 0, "beta", 21) +__version__ = "3.0.0rc1" +version_info = VersionInfo(3, 0, 0, "release candidate", 1) diff --git a/redbot/core/cli.py b/redbot/core/cli.py index 29ff80321..8d31b8f0a 100644 --- a/redbot/core/cli.py +++ b/redbot/core/cli.py @@ -50,12 +50,10 @@ def interactive_config(red, token_set, prefix_set): def ask_sentry(red: Red): loop = asyncio.get_event_loop() print( - "\nThank you for installing Red V3 beta! The current version\n" - " is not suited for production use and is aimed at testing\n" - " the current and upcoming featureset, that's why we will\n" - " also collect the fatal error logs to help us fix any new\n" - " found issues in a timely manner. If you wish to opt in\n" - ' the process please type "yes":\n' + "\nThank you for installing Red V3! Red is constantly undergoing\n" + " improvements, and we would like ask if you are comfortable with\n" + " the bot automatically submitting fatal error logs to the development\n" + ' team. If you wish to opt into the process please type "yes":\n' ) if not confirm("> "): loop.run_until_complete(red.db.enable_sentry.set(False))