Skip to content

Commit 7ad77ea

Browse files
authored
Merge pull request #617 from jjfumero/release/1.0.10
[release] v1.0.10
2 parents be6e401 + c69291e commit 7ad77ea

File tree

22 files changed

+55
-46
lines changed

22 files changed

+55
-46
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# TornadoVM
22

3-
![TornadoVM version](https://img.shields.io/badge/version-1.0.9-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%20Classpth%20Exeception-blue.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html)
3+
![TornadoVM version](https://img.shields.io/badge/version-1.0.10-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%20Classpth%20Exeception-blue.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html)
44

55
<img align="left" width="250" height="250" src="etc/tornadoVM_Logo.jpg">
66

@@ -20,7 +20,7 @@ Developers can choose which backends to install and run.
2020

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

23-
**Latest Release:** TornadoVM 1.0.9 - 20/12/2024 :
23+
**Latest Release:** TornadoVM 1.0.10 - 31/01/2025 :
2424
See [CHANGELOG](https://tornadovm.readthedocs.io/en/latest/CHANGELOG.html).
2525

2626
----------------------
@@ -261,12 +261,12 @@ You can import the TornadoVM API by setting this the following dependency in the
261261
<dependency>
262262
<groupId>tornado</groupId>
263263
<artifactId>tornado-api</artifactId>
264-
<version>1.0.9</version>
264+
<version>1.0.10</version>
265265
</dependency>
266266
<dependency>
267267
<groupId>tornado</groupId>
268268
<artifactId>tornado-matrices</artifactId>
269-
<version>1.0.9</version>
269+
<version>1.0.10</version>
270270
</dependency>
271271
</dependencies>
272272
```

bin/tornadovm-installer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import installer_config as config
3636
## Configuration
3737
## ################################################################
3838
__DIRECTORY_DEPENDENCIES__ = os.path.join("etc", "dependencies")
39-
__VERSION__ = "v1.0.9"
39+
__VERSION__ = "v1.0.10"
4040

4141
__SUPPORTED_JDKS__ = [
4242
config.__JDK21__,

docs/source/CHANGELOG.rst

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,33 @@ TornadoVM Changelog
55

66
This file summarizes the new features and major changes for each *TornadoVM* version.
77

8+
TornadoVM 1.0.10
9+
---------------
10+
31/01/25
11+
12+
Improvements
13+
~~~~~~~~~~~~
14+
15+
- `#608 <https://github.com/beehive-lab/TornadoVM/pull/608>`_: Selective execution with multiple SPIR-V runtimes (either OpenCL, Intel Level Zero, or both) to unlock execution on RISC-V systems.
16+
- `#611 <https://github.com/beehive-lab/TornadoVM/pull/611>`_: Support of ``HalfFloat`` for Matrix Types (``FP16`` -> ``FP16``).
17+
18+
Compatibility
19+
~~~~~~~~~~~~
20+
21+
- `#607 <https://github.com/beehive-lab/TornadoVM/pull/607>`_: WSL installation and configuration updated for WSL Ubuntu 24 LTS and Windows 11.
22+
- `#609 <https://github.com/beehive-lab/TornadoVM/pull/609>`_: Documentation and patch for RISC-V64 updated.
23+
- `#610 <https://github.com/beehive-lab/TornadoVM/pull/610>`_: Maven dependency updated
24+
- `#612 <https://github.com/beehive-lab/TornadoVM/pull/612>`_: Re-enable colours in maven builds on Linux.
25+
26+
Bug Fixes
27+
~~~~~~~~~~~~
28+
29+
- `#606 <https://github.com/beehive-lab/TornadoVM/pull/606>`_: Fix data sizes in benchmark suite.
30+
- `#613 <https://github.com/beehive-lab/TornadoVM/pull/613>`_: Fix code formatter.
31+
- `#614 <https://github.com/beehive-lab/TornadoVM/pull/614>`_: Fix flags for the benchmark pipeline in Jenkins.
32+
- `#615 <https://github.com/beehive-lab/TornadoVM/pull/615>`_: Fix code style based on the formatter.
33+
- `#616 <https://github.com/beehive-lab/TornadoVM/pull/616>`_: Fix atomics for the Kernel API and the OpenCL backend.
34+
835

936
TornadoVM 1.0.9
1037
---------------
@@ -49,7 +76,6 @@ Bug Fixes
4976
- Check size elements for memory segments: `link <https://github.com/beehive-lab/TornadoVM/commit/4360385156236bb2397debeea65fedea349c6bca>`_.
5077

5178

52-
5379
TornadoVM 1.0.8
5480
---------------
5581
30th September 2024

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-2024, APT Group, Department of Computer Science"
77
author = "The University of Manchester"
88

9-
release = "v1.0.9"
10-
version = "v1.0.9"
9+
release = "v1.0.10"
10+
version = "v1.0.10"
1111

1212
# -- General configuration
1313

docs/source/installation.rst

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -737,13 +737,13 @@ To use the TornadoVM API in your projects, you can checkout our maven repository
737737
<dependency>
738738
<groupId>tornado</groupId>
739739
<artifactId>tornado-api</artifactId>
740-
<version>1.0.9</version>
740+
<version>1.0.10</version>
741741
</dependency>
742742
743743
<dependency>
744744
<groupId>tornado</groupId>
745745
<artifactId>tornado-matrices</artifactId>
746-
<version>1.0.9</version>
746+
<version>1.0.10</version>
747747
</dependency>
748748
</dependencies>
749749
@@ -754,6 +754,7 @@ Notice that, for running with TornadoVM, you will need either the docker images
754754
Versions available
755755
==================
756756
757+
* 1.0.10
757758
* 1.0.9
758759
* 1.0.7
759760
* 1.0.6
@@ -763,21 +764,3 @@ Versions available
763764
* 1.0.2
764765
* 1.0.1
765766
* 1.0
766-
* 0.15.2
767-
* 0.15.1
768-
* 0.15
769-
* 0.14.1
770-
* 0.14
771-
* 0.13
772-
* 0.12
773-
* 0.11
774-
* 0.10
775-
* 0.9
776-
* 0.8
777-
* 0.7
778-
* 0.6
779-
* 0.5
780-
* 0.4
781-
* 0.3
782-
* 0.2
783-
* 0.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>tornado</groupId>
77
<artifactId>tornado</artifactId>
8-
<version>1.0.10-dev </version>
8+
<version>1.0.10</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
<artifactId>tornado</artifactId>
88
<groupId>tornado</groupId>
9-
<version>1.0.10-dev </version>
9+
<version>1.0.10</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>tornado</groupId>
8-
<version>1.0.10-dev </version>
8+
<version>1.0.10</version>
99
</parent>
1010

1111
<groupId>tornado</groupId>
1212
<artifactId>tornado-api</artifactId>
13-
<version>1.0.10-dev </version>
13+
<version>1.0.10</version>
1414

1515
<name>tornado-api</name>
1616
<url>https://tornadovm.org</url>

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>tornado</groupId>
77
<artifactId>tornado</artifactId>
8-
<version>1.0.10-dev </version>
8+
<version>1.0.10</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
@@ -352,7 +352,7 @@ else:
352352

353353
ENABLE_ASSERTIONS = "-ea "
354354

355-
__VERSION__ = "1.0.9-dev"
355+
__VERSION__ = "1.0.10"
356356

357357
try:
358358
javaHome = os.environ["JAVA_HOME"]

0 commit comments

Comments
 (0)