Skip to content

Commit 4cf1562

Browse files
committed
Update release notes and version for 15.1.1
1 parent a77f706 commit 4cf1562

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

RELEASE.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# SST 15.1 Release Notes
22

3+
SST 15.1.1 Bug Fix Release - 2026-Jan
4+
===========================================
5+
6+
## SST-Core
7+
* Fixed bug that occurred in rare cases in parallel loaded simulations when checking ports on nonlocal links.
8+
9+
SST 15.1.0 Release - 2025-Nov
10+
===========================================
11+
312
## General
413
* This release has several performance improvements and bug fixes.
514
* The experimental debug console that allows online introspection of elements is significantly more capable.
@@ -9,23 +18,23 @@
918

1019
## Deprecation and Removal Notices
1120
* There are no new deprecations added in this point release. The following list is copied from the 15.0 release.
12-
* Use of shared TimeConverters (via pointers returned from Core API functions) is deprecated. Core APIs that accepted a `TimeConverter*` have been updated to accept a `TimeConverter` instead.
13-
In SST 16.0, Core APIs that return TimeConverter pointers will be changed to return a TimeConverter instance instead. To prepare for this switch, change code to construct a local
21+
* Use of shared TimeConverters (via pointers returned from Core API functions) is deprecated. Core APIs that accepted a `TimeConverter*` have been updated to accept a `TimeConverter` instead.
22+
In SST 16.0, Core APIs that return TimeConverter pointers will be changed to return a TimeConverter instance instead. To prepare for this switch, change code to construct a local
1423
TimeConverter instance from a returned TimeConverter pointer as shown.
1524
```
1625
// Old code
1726
TimeConverter* tc = registerClock(...);
18-
27+
1928
// New code
2029
TimeConverter tc = registerClock(...);
2130
```
2231
* In SST input files, GlobalParams have been renamed to SharedParams to reflect the fact that they can be shared among elements but are not "global" as there can be multiple groups of SharedParams that are not shared across all elements.
2332
* Reminder: The Event::Handler and Clock::Handler handler types were deprecated in SST 14.0. Use Event::Handler2 and Clock::Handler2 instead.
2433
* The Handler signatures will be switched to match Handler2 in SST 16.0.
2534
* The name Handler2 will be deprecated at SST 16.0 and removed in SST 17.0.
26-
* Update all elements to use the new signatures before or at SST 16.0. Switching before SST 16.0 will require changing (`Handler<class>` -> `Handler2<class,&class::callback_function>`) prior to SST 16.0 and then to (`Handler<class, &class::callback_function>`) after 16.0.
35+
* Update all elements to use the new signatures before or at SST 16.0. Switching before SST 16.0 will require changing (`Handler<class>` -> `Handler2<class,&class::callback_function>`) prior to SST 16.0 and then to (`Handler<class, &class::callback_function>`) after 16.0.
2736
Waiting until SST 16.0 to switch will cause your code to break in SST 16.0 until you change the definition of (`Handler<class>` -> `Handler<class, &class::callback_function>`).
28-
* SST-Macro is a maintenance-only development effort. Due to increasing divergence between the SST-Core and SST-Macro, we will no longer be ensuring that the SST-Core and SST-Macro devel branches stay in sync.
37+
* SST-Macro is a maintenance-only development effort. Due to increasing divergence between the SST-Core and SST-Macro, we will no longer be ensuring that the SST-Core and SST-Macro devel branches stay in sync.
2938
However, we will continue to ensure that the master branches and releases of SST-Macro work with SST-Core. Where possible, we recommend using the mercury element instead of SST-Macro.
3039
If mercury is missing key functionality present in SST-Macro that is not found elsewhere in SST-Elements, please let us know.
3140

configure.ac

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

2-
AC_INIT([SSTCore], [15.1.0], [wg-sst@sandia.gov])
2+
AC_INIT([SSTCore], [15.1.1], [wg-sst@sandia.gov])
33

44
AC_PREREQ([2.59])
55
AC_COPYRIGHT([Copyright National Technology and Engineering Solutions of Sandia (NTESS), 2004-2025])

doc/Doxyfile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ PROJECT_NAME = SST
3232
# This could be handy for archiving the generated documentation or
3333
# if some version control system is used.
3434

35-
PROJECT_NUMBER = 15.1.0
35+
PROJECT_NUMBER = 15.1.1
3636

3737
# Using the PROJECT_BRIEF tag one can provide an optional one line description
3838
# for a project that appears at the top of each page and should give viewer

experimental/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
cmake_minimum_required(VERSION 3.16)
1717
project(
1818
sst-core
19-
VERSION 15.1.0
19+
VERSION 15.1.1
2020
DESCRIPTION "SSTCore"
2121
LANGUAGES C CXX)
2222

0 commit comments

Comments
 (0)