diff --git a/doc/notes/3.3.1.md b/doc/notes/3.3.1.md new file mode 100644 index 0000000000..0d2503e74e --- /dev/null +++ b/doc/notes/3.3.1.md @@ -0,0 +1,18 @@ +### 3.3.1 + +_Not Released Yet_ + +This build includes the following changes: + +#### Bindings + +#### Improvements + +#### Fixes + +#### Breaking Changes + +``` +(B): binary incompatible change +(S): source incompatible change +``` diff --git a/doc/notes/README.md b/doc/notes/README.md index 84530b0a7b..89aaad9f8d 100644 --- a/doc/notes/README.md +++ b/doc/notes/README.md @@ -4,6 +4,7 @@ ### Version History +* YYYY-MM-DD [3.3.1](3.3.1.md) (work in progress) * 2021-11-15 [3.3.0](3.3.0.md) (latest) * 2019-09-01 [3.2.3](3.2.3.md) * 2019-05-05 [3.2.2](3.2.2.md) diff --git a/gradle.properties b/gradle.properties index 0b4b16685c..b4c6d6e83f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,4 +4,4 @@ # # MAJOR.MINOR.REVISION [0-9].[0-9].[0-9]+[ab]? -lwjglVersion=3.3.0 \ No newline at end of file +lwjglVersion=3.3.1 \ No newline at end of file diff --git a/modules/lwjgl/core/src/main/java/org/lwjgl/Version.java b/modules/lwjgl/core/src/main/java/org/lwjgl/Version.java index 4859f9d9bc..14ee103a13 100644 --- a/modules/lwjgl/core/src/main/java/org/lwjgl/Version.java +++ b/modules/lwjgl/core/src/main/java/org/lwjgl/Version.java @@ -13,7 +13,7 @@ public final class Version { public static final int VERSION_MAJOR = 3, VERSION_MINOR = 3, - VERSION_REVISION = 0; + VERSION_REVISION = 1; /** The development state of the current build. */ public static final BuildType BUILD_TYPE = BuildType.STABLE;