Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to GPULlama3.java will be documented in this file.

## [0.4.0] - 2026-02-25

### Other Changes

- Add JDK 25 support with TornadoVM JDK25 and dual-JDK build profiles ([#97](https://github.com/beehive-lab/GPULlama3.java/pull/97))

## [0.3.3] - 2025-12-19

<!-- TODO: Add changes manually -->
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ authors:
given-names: "Christos"
title: "GPULlama3.java"
license: MIT License
version: 0.3.3
date-released: 2025-12-19
version: 0.4.0
date-released: 2026-02-25
url: "https://github.com/beehive-lab/GPULlama3.java"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ You can add **GPULlama3.java** directly to your Maven project by including the f
<dependency>
<groupId>io.github.beehive-lab</groupId>
<artifactId>gpu-llama3</artifactId>
<version>0.3.3</version>
<version>0.4.0</version>
</dependency>
```

Expand All @@ -144,7 +144,7 @@ You can add **GPULlama3.java** directly to your Maven project by including the f
<dependency>
<groupId>io.github.beehive-lab</groupId>
<artifactId>gpu-llama3</artifactId>
<version>0.3.1-jdk25</version>
<version>0.4.0-jdk25</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<properties>
<!-- CI-friendly version: resolved by flatten-maven-plugin at build time -->
<revision>0.3.1</revision>
<revision>0.4.0</revision>
<jdk.version.suffix></jdk.version.suffix> <!-- empty=JDK21, -jdk25=JDK25 -->
<!-- TornadoVM version: overridden per JDK profile -->
<tornadovm.version>3.0.0</tornadovm.version> <!-- JDK21 default -->
Expand Down