Skip to content

Commit 4ff0bda

Browse files
authored
Merge pull request #760 from beehive-lab/release/2.1.0
Release 2.1.0
2 parents e60d7e4 + 4e0d299 commit 4ff0bda

File tree

22 files changed

+55
-27
lines changed

22 files changed

+55
-27
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Runtime Version](https://img.shields.io/maven-central/v/io.github.beehive-lab/tornado-runtime?logo=apache-maven&color=blue&label=Tornado%20Runtime)](https://central.sonatype.com/artifact/io.github.beehive-lab/tornado-runtime)
66

77

8-
![TornadoVM version](https://img.shields.io/badge/version-2.0.0-purple) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-1.4-4baaaa.svg)](CODE_OF_CONDUCT.md) [![License: Apache 2](https://img.shields.io/badge/License-Apache%202.0-red.svg)](https://github.com/beehive-lab/TornadoVM/blob/master/LICENSE_APACHE2) ![License: GPL v2](https://img.shields.io/badge/License-GPL%20V2%20Classpath%20Exception-blue.svg)
8+
![TornadoVM version](https://img.shields.io/badge/version-2.1.0-purple) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-1.4-4baaaa.svg)](CODE_OF_CONDUCT.md) [![License: Apache 2](https://img.shields.io/badge/License-Apache%202.0-red.svg)](https://github.com/beehive-lab/TornadoVM/blob/master/LICENSE_APACHE2) ![License: GPL v2](https://img.shields.io/badge/License-GPL%20V2%20Classpath%20Exception-blue.svg)
99

1010
<img align="left" width="180" height="180" src="etc/tornadoVM_Logo.jpg">
1111

@@ -25,7 +25,7 @@ Developers can choose which backends to install and run.
2525

2626
For a quick introduction please read the following [FAQ](https://tornadovm.readthedocs.io/en/latest/).
2727

28-
**Latest Release:** TornadoVM 2.0.0 - 02/12/2025 :
28+
**Latest Release:** TornadoVM 2.1.0 - 09/12/2025 :
2929
See [CHANGELOG](https://tornadovm.readthedocs.io/en/latest/CHANGELOG.html).
3030

3131
----------------------
@@ -117,12 +117,12 @@ that includes NBody, DFT, KMeans computation and matrix computations.
117117
<dependency>
118118
<groupId>io.github.beehive-lab</groupId>
119119
<artifactId>tornado-api</artifactId>
120-
<version>2.0.0</version>
120+
<version>2.1.0</version>
121121
</dependency>
122122
<dependency>
123123
<groupId>io.github.beehive-lab</groupId>
124124
<artifactId>tornado-runtime</artifactId>
125-
<version>2.0.0</version>
125+
<version>2.1.0</version>
126126
</dependency>
127127
</dependencies>
128128
```

bin/tornadovm-installer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ import textwrap
6161

6262
# Configuration
6363
__DIRECTORY_DEPENDENCIES__ = (Path("etc") / "dependencies").resolve()
64-
__VERSION__ = "v2.0.0"
64+
__VERSION__ = "v2.1.0"
6565
__SUPPORTED_JDKS__ = [
6666
config.__JDK21__,
6767
config.__GRAALVM21__,

docs/source/CHANGELOG.rst

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,33 @@ This file summarizes the new features and major changes for each *TornadoVM* ver
77

88
CHANGELOG
99

10+
TornadoVM 2.1.0
11+
---------------
12+
09/12/25
13+
14+
Improvements
15+
~~~~~~~~~~~~
16+
17+
- `#754 <https://github.com/beehive-lab/TornadoVM/pull/754>`_: Support to express Q8_0 tensors as Tornado ByteArray
18+
19+
Compatibility
20+
~~~~~~~~~~~~
21+
22+
- `#756 <https://github.com/beehive-lab/TornadoVM/pull/756>`_: [CI] Add night workflow to build and test all supported JDKs (Zulu, OpenJDK, GraalVM, Corretto, Mandrel etc) on Linux x64 runner
23+
- `#755 <https://github.com/beehive-lab/TornadoVM/pull/755>`_: [docs] Refining README and simplifying instructions
24+
25+
Bug Fixes
26+
~~~~~~~~~~~~
27+
28+
- `#753 <https://github.com/beehive-lab/TornadoVM/pull/753>`_: [hotfix] Fix Conversion Error from FP16 to FP32
29+
30+
Other Changes
31+
~~~~~~~~~~~~
32+
33+
- `#752 <https://github.com/beehive-lab/TornadoVM/pull/752>`_: Update POM files: bump parent version to \`2.0.1-dev\` across all modules
34+
- `#758 <https://github.com/beehive-lab/TornadoVM/pull/758>`_: [CI] Pre and post release workflows to automate release deployments
35+
36+
1037
TornadoVM 2.0.0
1138
---------------
1239
02/12/25

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
copyright = "2013-2025, APT Group, Department of Computer Science"
77
author = "The University of Manchester"
88

9-
release = "v2.0.0"
10-
version = "v2.0.0"
9+
release = "v2.1.0"
10+
version = "v2.1.0"
1111

1212
# -- General configuration
1313

docs/source/installation.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -722,13 +722,13 @@ To use the TornadoVM API in your projects, you can checkout our maven repository
722722
<dependency>
723723
<groupId>io.github.beehive-lab</groupId>
724724
<artifactId>tornado-api</artifactId>
725-
<version>2.0.0</version>
725+
<version>2.1.0</version>
726726
</dependency>
727727
728728
<dependency>
729729
<groupId>io.github.beehive-lab</groupId>
730730
<artifactId>tornado-matrices</artifactId>
731-
<version>2.0.0</version>
731+
<version>2.1.0</version>
732732
</dependency>
733733
</dependencies>
734734
@@ -739,6 +739,7 @@ Notice that, for running with TornadoVM, you will need either the docker images
739739
Versions available
740740
==================
741741
742+
* 2.1.0
742743
* 2.0.0
743744
* 1.1.1
744745
* 1.1.0

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>io.github.beehive-lab</groupId>
77
<artifactId>tornado</artifactId>
8-
<version>2.0.1-dev</version>
8+
<version>2.1.0</version>
99
<packaging>pom</packaging>
1010
<name>tornado</name>
1111
<url>https://github.com/beehive-lab/tornadovm</url>

tornado-annotation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.github.beehive-lab</groupId>
88
<artifactId>tornado</artifactId>
9-
<version>2.0.1-dev</version>
9+
<version>2.1.0</version>
1010
</parent>
1111

1212
<artifactId>tornado-annotation</artifactId>

tornado-api/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<artifactId>tornado</artifactId>
77
<groupId>io.github.beehive-lab</groupId>
8-
<version>2.0.1-dev</version>
8+
<version>2.1.0</version>
99
</parent>
1010
<description>TornadoVM API: A high-level programming interface for accelerating Java applications on heterogeneous hardware</description>
1111
<groupId>io.github.beehive-lab</groupId>
1212
<artifactId>tornado-api</artifactId>
13-
<version>2.0.1-dev</version>
13+
<version>2.1.0</version>
1414
<name>tornado-api</name>
1515
<url>https://tornadovm.org</url>
1616
<licenses>

tornado-assembly/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.beehive-lab</groupId>
77
<artifactId>tornado</artifactId>
8-
<version>2.0.1-dev</version>
8+
<version>2.1.0</version>
99
</parent>
1010
<artifactId>tornado-assembly</artifactId>
1111
<packaging>pom</packaging>

tornado-assembly/src/bin/tornado-test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ else:
396396

397397
ENABLE_ASSERTIONS = "-ea "
398398

399-
__VERSION__ = "2.0.0"
399+
__VERSION__ = "2.1.0"
400400

401401
try:
402402
javaHome = os.environ["JAVA_HOME"]

0 commit comments

Comments
 (0)