Skip to content

Commit 0c96867

Browse files
release 1.3.0 changelog, version and zenodo
- update zenodo file - write changelog for 1.3.0 - update version to 1.3.0
1 parent 6017280 commit 0c96867

File tree

3 files changed

+62
-23
lines changed

3 files changed

+62
-23
lines changed

.zenodo.json

Lines changed: 28 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -7,54 +7,60 @@
77
"affiliation": "CERN",
88
"orcid": "0000-0002-6515-5666"
99
},
10+
{
11+
"name": "Widera, René",
12+
"affiliation": "Helmholtz-Zentrum Dresden-Rossendorf",
13+
"orcid": "0000-0003-1642-0459"
14+
},
1015
{
1116
"name": "Ehrig, Simeon",
1217
"affiliation": "Helmholtz-Zentrum Dresden-Rossendorf",
1318
"orcid": "0000-0002-8218-3116"
1419
},
20+
{
21+
"name": "Perego, Aurora",
22+
"affiliation": "CERN",
23+
"orcid": "0009-0002-5210-6213"
24+
},
25+
{
26+
"name": "Yusufoglu, Mehmet",
27+
"affiliation": "CASUS, Helmholtz-Zentrum Dresden-Rossendorf"
28+
}
29+
],
30+
"contributors": [
1531
{
1632
"name": "Erdem, Sven",
17-
"affiliation": "Helmholtz-Zentrum Berlin"
33+
"affiliation": "Helmholtz-Zentrum Berlin",
34+
"type": "Other"
1835
},
1936
{
2037
"name": "Fila, Mateusz Jakub",
21-
"affiliation": "CERN"
38+
"affiliation": "CERN",
39+
"type": "Other"
2240
},
2341
{
2442
"name": "Gruber, Bernhard Manfred",
2543
"affiliation": "CASUS, Helmholtz-Zentrum Dresden-Rossendorf, CERN",
26-
"orcid": "0000-0001-7848-1690"
44+
"orcid": "0000-0001-7848-1690",
45+
"type": "Other"
2746
},
2847
{
2948
"name": "Lenz, Julian",
3049
"affiliation": "CASUS, Helmholtz-Zentrum Dresden-Rossendorf",
31-
"orcid": "0000-0001-5250-0005"
32-
},
33-
{
34-
"name": "Perego, Aurora",
35-
"affiliation": "CERN",
36-
"orcid": "0009-0002-5210-6213"
50+
"orcid": "0000-0001-5250-0005",
51+
"type": "Other"
3752
},
3853
{
3954
"name": "Varvarin, Michael",
40-
"affiliation": "CASUS, Helmholtz-Zentrum Dresden-Rossendorf"
55+
"affiliation": "CASUS, Helmholtz-Zentrum Dresden-Rossendorf",
56+
"type": "Other"
4157
},
4258
{
4359
"name": "Vyskočil, Jiří",
4460
"affiliation": "CASUS, Helmholtz-Zentrum Dresden-Rossendorf",
45-
"orcid": "0000-0001-8822-0929"
46-
},
47-
{
48-
"name": "Widera, René",
49-
"affiliation": "Helmholtz-Zentrum Dresden-Rossendorf",
50-
"orcid": "0000-0003-1642-0459"
61+
"orcid": "0000-0001-8822-0929",
62+
"type": "Other"
5163
},
52-
{
53-
"name": "Yusufoglu, Mehmet",
54-
"affiliation": "CASUS, Helmholtz-Zentrum Dresden-Rossendorf"
55-
}
56-
],
57-
"contributors": [
5864
{
5965
"name": "Bastrakov, Sergei",
6066
"affiliation": "Helmholtz-Zentrum Dresden-Rossendorf",

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,39 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
55

6+
## [1.3.0] - 2025-07-04
7+
8+
### Added
9+
10+
- add static function `dim()` to alpaka::Vec #2428
11+
- add math functions for complex type for the oneAPI backend #2447
12+
- Gitlab CI: enable test for the SYCL CPU backend #2462
13+
14+
### Changed
15+
16+
- Intel FPGA SYCL backend does not support 64-bit atomics #2453
17+
- update Ubuntu 20.04 images in GitHub Actions #2522
18+
- alpaka::math custom implementations for CPU backend #2525
19+
20+
### Fixed
21+
22+
- fix parallelLoopPatterns for the Intel FPGA SYCL back-end #2457
23+
- fix bablestream benchmark #2521
24+
- add missing wait to get correct timer information #2523
25+
- rename directory cuda_hip to cuda-hip to fix amalgamation #2524
26+
- fix `ALPAKA_THROW_ACC` for CUDA/HIP-only mode #2529
27+
- add `#include <chrono>` everywhere it is used #2530
28+
- SYCL:
29+
- fix SYCL index order #2526
30+
- change attribute intel::reqd_sub_group_size to sycl::reqd_sub_group_size #2528
31+
- fix template arguments of SYCL buffer specializations #2429
32+
- protect usage of `__SYCL_TARGET` macros #2532
33+
- CI:
34+
- backport CI fixes from 2.0 dev branch #2449
35+
- update GitHub Action checkout action and upload-artifact action to v4 #2455
36+
- disable test not supported by SYCL #2469
37+
- disable SYCL warp tests #2527
38+
639
## [1.2.0] - 2024-10-02
740

841
### Added

include/alpaka/version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include <boost/predef/version_number.h>
88

99
#define ALPAKA_VERSION_MAJOR 1
10-
#define ALPAKA_VERSION_MINOR 2
10+
#define ALPAKA_VERSION_MINOR 3
1111
#define ALPAKA_VERSION_PATCH 0
1212

1313
//! The alpaka library version number

0 commit comments

Comments
 (0)