Skip to content

Commit 5cd9791

Browse files
committed
bump version to 2.7.0
1 parent e99e7c8 commit 5cd9791

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ subprojects {
3333

3434
group = 'org.quiltmc'
3535
// When bumping version, remember to update the int constants in Enigma!
36-
version = '2.6.2'
36+
version = '2.7.0'
3737

3838
var ENV = System.getenv()
3939
version = version + (ENV.GITHUB_ACTIONS ? (ENV.SNAPSHOTS_URL ? "-SNAPSHOT" : "") : "+local")

enigma/src/main/java/org/quiltmc/enigma/api/Enigma.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,13 @@ public class Enigma {
9191
* {@link EnigmaPlugin#supportsEnigmaVersion(Version)} implementations,
9292
* allowing plugins to 'remember' the version of Enigma they were built with.
9393
*/
94-
public static final int MINOR_VERSION = 6;
94+
public static final int MINOR_VERSION = 7;
9595
/**
9696
* A compile-time constant which compilers can inline in
9797
* {@link EnigmaPlugin#supportsEnigmaVersion(Version)} implementations,
9898
* allowing plugins to 'remember' the version of Enigma they were built with.
9999
*/
100-
public static final int PATCH_VERSION = 2;
100+
public static final int PATCH_VERSION = 0;
101101

102102
private static final Version CURRENT_VERSION = new Version(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION);
103103

0 commit comments

Comments
 (0)