diff --git a/CHANGELOG.md b/CHANGELOG.md index adf147393..c9538b610 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Gluon Changelog +## `0.1.0-pre.2+1.21` +### Fixed + - Dispel disinformation denoted by dangerously dubious documentation (related to entity and level ticking) + - CI now removes `-pre.` when it is publishing snapshots (failure due to incorrect environment variable) + ## `0.1.0-pre.1+1.21` ### Added - Lifecycle Events diff --git a/build.gradle b/build.gradle index 355681a27..3df1c0f4d 100644 --- a/build.gradle +++ b/build.gradle @@ -23,7 +23,7 @@ if (version.contains("-alpha.") && !ENV.MAVEN_URL) { } // Takes "1.0.0-pre.1" and changes it to "1.0.0" if we're publishing a snapshot. -if (version.contains("-pre.") && ENV.SNAPSHOT_URL) { +if (version.contains("-pre.") && ENV.SNAPSHOTS_URL) { version = version.replace(version.substring(version.indexOf("-pre.")), "") }