Skip to content

Commit

Permalink
build: bump version to 3.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Spasi committed Sep 2, 2019
1 parent e41032b commit 172949f
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ enum class Artifacts(
"A cross-platform, graphics API agnostic rendering library. It provides a high performance, low level abstraction for common platform graphics APIs like OpenGL, Direct3D and Apple Metal.",
*Platforms.ALL
),
/*BULLET(
BULLET(
"lwjgl-bullet", "LWJGL - Bullet bindings",
"Real-time collision detection and multi-physics simulation for VR, games, visual effects, robotics, machine learning etc.",
*Platforms.ALL
),*/
),
CUDA(
"lwjgl-cuda", "LWJGL - CUDA bindings",
"A parallel computing platform and programming model developed by NVIDIA for general computing on GPUs."
Expand Down
2 changes: 1 addition & 1 deletion config/build-bindings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This script is included in /config/build-definitions.xml.

<property name="binding.assimp" value="true"/>
<property name="binding.bgfx" value="true"/>
<property name="binding.bullet" value="false"/>
<property name="binding.bullet" value="true"/>
<property name="binding.cuda" value="true"/>
<property name="binding.egl" value="true"/>
<property name="binding.glfw" value="true"/>
Expand Down
20 changes: 20 additions & 0 deletions doc/notes/3.2.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
### 3.2.4

_Not Released Yet_

This build includes the following changes:

#### Bindings

#### Improvements

- macOS: Shared libraries are now built with Xcode 10.3 (up from 10.0)

#### Fixes

#### Breaking Changes

```
(B): binary incompatible change
(S): source incompatible change
```
1 change: 1 addition & 0 deletions doc/notes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

### Version History

* YYYY-MM-DD [3.2.4](3.2.4.md) (work in progress)
* 2019-09-01 [3.2.3](3.2.3.md) (latest)
* 2019-05-05 [3.2.2](3.2.2.md)
* 2018-12-08 [3.2.1](3.2.1.md)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
#

# MAJOR.MINOR.REVISION [0-9].[0-9].[0-9]+[ab]?
lwjglVersion=3.2.3
lwjglVersion=3.2.4
2 changes: 1 addition & 1 deletion modules/lwjgl/core/src/main/java/org/lwjgl/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public final class Version {
public static final int
VERSION_MAJOR = 3,
VERSION_MINOR = 2,
VERSION_REVISION = 3;
VERSION_REVISION = 4;

/** The development state of the current build. */
public static final BuildType BUILD_TYPE = BuildType.STABLE;
Expand Down

0 comments on commit 172949f

Please sign in to comment.