Skip to content

Commit 08aaf32

Browse files
committed
Begin ForgeGradle 7.0's Release Candidate lifecycle
1 parent 42d0d8f commit 08aaf32

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

src/main/java/net/minecraftforge/gradle/internal/Constants.java

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@ final class Constants {
2828
/// Use these with [java.text.MessageFormat#format(String, Object...)].
2929
static final class Messages {
3030
static final String WELCOME = """
31-
Welcome to ForgeGradle 7.0 BETA!
32-
33-
This is an unstable release of ForgeGradle 7 for testing purposes.
31+
Welcome to ForgeGradle 7.0 Release Candidate!
3432
3533
Here are some release highlights:
3634
- Complete rewrite of the plugin and underlying code.
@@ -41,9 +39,6 @@ static final class Messages {
4139
work-in-progress).
4240
4341
A couple of important things to note:
44-
- ForgeGradle 6 and older will no longer be supported, except for critical bug
45-
fixes. We will (gently) encourage developers to move away from them and use
46-
ForgeGradle 7 instead.
4742
- Many plugins that worked with ForgeGradle 6, such as Parchment's Librarian,
4843
do not work with ForgeGradle 7. For most cases (such as parchment), we have
4944
implemented native support. If ForgeGradle 7 is lacking in some aspect,
@@ -54,13 +49,20 @@ fixes. We will (gently) encourage developers to move away from them and use
5449
If you are on an older version (1.20.4 and older), you will need the
5550
'net.minecraftforge.renamer' plugin. Many of these come with our provided
5651
MDK, so this should not be an issue for you.
52+
- If you come across any lingering bugs, please report them to our GitHub
53+
issue tracker (https://github.com/MinecraftForge/ForgeGradle/issues).
54+
Please do not use Discord as a means to report issues, as they will get
55+
lost in the discussion very easily.
5756
5857
For more details on this release, see https://docs.minecraftforge.net/en/fg-7.0/""";
5958

6059
static final String WELCOME_CONDITION = """
61-
This message will not display again until the next major beta update, ForgeGradle
62-
7.1, or the below file is deleted:
63-
{}""";
60+
This message will not display again until ForgeGradle 7.0 or the below file is
61+
deleted:
62+
{}
63+
64+
Documentation will be coming at a later date. Thank you for testing
65+
ForgeGradle 7!""";
6466

6567
static final String MAGIC = """
6668
This build is using ForgeGradle Magic. ForgeGradle Magic employs automatic

src/main/java/net/minecraftforge/gradle/internal/ForgeGradleMessage.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
import java.util.Locale;
1414

1515
enum ForgeGradleMessage {
16-
WELCOME("7_0_BETA_WELCOME_1", Constants.Messages.WELCOME, Constants.Messages.WELCOME_CONDITION),
17-
MAGIC("7_0_BETA_MAGIC_1", Constants.Messages.MAGIC);
16+
WELCOME("7_0_RC_WELCOME_1", Constants.Messages.WELCOME, Constants.Messages.WELCOME_CONDITION),
17+
MAGIC("7_0_RC_MAGIC_1", Constants.Messages.MAGIC);
1818

1919
private static final String MESSAGES_DIR = "messages";
2020

0 commit comments

Comments
 (0)