Skip to content

Commit

Permalink
chore: prepare 0.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMrMilchmann committed Sep 9, 2024
1 parent 64ab47b commit 4f29ed9
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ A Gradle plugin to simplify working with [LWJGL 3](https://lwjgl.org).

```kotlin
plugins {
id("com.osmerion.lwjgl3") version "0.3.0"
id("com.osmerion.lwjgl3") version "0.4.0"
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/changelog/0.4.0.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### 0.4.0

_Not Released Yet_
_Released 2024 Sep 09_

#### Improvements

Expand Down
4 changes: 2 additions & 2 deletions docs/changelog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

### Version History

* ????-??-?? [0.4.0](0.4.0.md) (TBD; work in progress)
* 2024-07-28 [0.3.0](0.3.0.md) (latest)
* 2024-09-09 [0.4.0](0.4.0.md) (latest)
* 2024-07-28 [0.3.0](0.3.0.md)
* 2023-09-17 [0.2.0](0.2.0.md)
* 2023-07-03 [0.1.0](0.1.0.md)

Expand Down
20 changes: 20 additions & 0 deletions docs/changelog/full.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
### 0.4.0

_Released 2024 Sep 09_

#### Improvements

- Added support for setting the LWJGL group and version in the `lwjgl3` project
extension.
- If specified, targets will now inherit the group and version from the
`lwjgl3` extension.

#### Breaking Changes

- Updated the minimum required Gradle version to 8.0 (from 7.6).
- `LWJGL` has been replaced with `Lwjgl` in class names to follow Kotlin naming
conventions.


---

### 0.3.0

_Released 2024 Jul 28_
Expand Down
19 changes: 10 additions & 9 deletions docs/changelog/latest.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
### 0.3.0
### 0.4.0

_Released 2024 Jul 28_
_Released 2024 Sep 09_

#### Improvements

- Added a predefined accessor for the msdfgen bindings. [[GH-24]](https://github.com/Osmerion/gradle-lwjgl3/issues/24)
- Added platform and architecture presets for FreeBSD x64.
- Added platform and architecture presets for RISC-V 64.
- Added platform and architecture presets for PowerPC 64 LE.
- Updated the default LWJGL version to 3.3.4. [[GH-23]](https://github.com/Osmerion/gradle-lwjgl3/issues/23)
- Added support for setting the LWJGL group and version in the `lwjgl3` project
extension.
- If specified, targets will now inherit the group and version from the
`lwjgl3` extension.

#### Fixes
#### Breaking Changes

- Corrected invalid GitHub links in published POM.
- Updated the minimum required Gradle version to 8.0 (from 7.6).
- `LWJGL` has been replaced with `Lwjgl` in class names to follow Kotlin naming
conventions.
2 changes: 1 addition & 1 deletion samples/groovy-dsl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import com.osmerion.gradle.lwjgl3.*

plugins {
id "java"
id "com.osmerion.lwjgl3" version "0.3.0"
id "com.osmerion.lwjgl3" version "0.4.0"
}

java {
Expand Down
2 changes: 1 addition & 1 deletion samples/kotlin-dsl/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import com.osmerion.gradle.lwjgl3.*

plugins {
java
id("com.osmerion.lwjgl3") version "0.3.0"
id("com.osmerion.lwjgl3") version "0.4.0"
}

java {
Expand Down

0 comments on commit 4f29ed9

Please sign in to comment.