diff --git a/CMakeLists.txt b/CMakeLists.txt index bc6f71a388..9945a70694 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -57,7 +57,7 @@ set(CMAKE_CXX_STANDARD 17) set(WRENCH_VERSION_MAJOR "2") set(WRENCH_VERSION_MINOR "3") set(WRENCH_VERSION_PATCH "0") -set(WRENCH_VERSION_EXTRA "dev") +set(WRENCH_VERSION_EXTRA "") if (${WRENCH_VERSION_PATCH} EQUAL "0") set(WRENCH_RELEASE_VERSION "${WRENCH_VERSION_MAJOR}.${WRENCH_VERSION_MINOR}") diff --git a/RELEASENOTES.md b/RELEASENOTES.md index bed2adc7ce..1b688b40a3 100755 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -7,6 +7,8 @@ Nothing new yet ### wrench 2.3 +(Sepember 10, 2024) this release includes **minor enhancements and upgrades**. More specifically: + - More full-feature REST API that gives access to the Action API in addition to the Workflow API - Upgrade to SimGrid v3.36, which comes with several bug fixes - Upgrade to WfCommon's WfFormat 1.5 @@ -14,6 +16,8 @@ Nothing new yet ### wrench 2.2 +(July 20, 2023) this release includes **a new REST API**, **new StorageService implementations**, and **fast simulation of zero-size messages**. More specifically: + - Implementation of `wrench-daemon`, which can be started on the local machine and supports a REST API so that users can create and run simulations in a language-agnostic manner. - Implementation of non-bufferized (i.e., buffer size of zero) storage services, which is transparent to the user but can vastly reduce simulation time by using a fluid (rather than message-based) model for how storage services read/write data to/from disk while sending/receiving that same data to/from the network. - API change by which a `FileLocation` now includes a `DataFile`. @@ -25,7 +29,7 @@ Nothing new yet ### wrench 2.1 -(october 7, 2022) this release include **a new storage service implementation**, **performance enhancements**, and **minor bug fixes**. More specifically: +(October 7, 2022) this release includes **a new storage service implementation**, **performance enhancements**, and **minor bug fixes**. More specifically: - implementation of a new storage service for the simulation of the [XRootD](https://xrootd.slac.stanford.edu/) storage system, along with implementation and examples. - performance and scalability improvements that reduce memory footprint and simulation execution time. diff --git a/doc/source/installation.rst b/doc/source/installation.rst index bd3e8227ed..bbaaffbef0 100755 --- a/doc/source/installation.rst +++ b/doc/source/installation.rst @@ -22,7 +22,7 @@ And, one of the following: - **g++** - version 7.5 or higher - **clang** Required Dependencies --------------------- -- `SimGrid `__ – version 3.34 +- `SimGrid `__ – version 3.36 - `JSON for Modern C++ `__ – version 3.9.0 or higher diff --git a/include/wrench/simulation/Version.h b/include/wrench/simulation/Version.h index 6111e52186..f0b0ea9710 100755 --- a/include/wrench/simulation/Version.h +++ b/include/wrench/simulation/Version.h @@ -9,5 +9,5 @@ */ namespace wrench { -#define WRENCH_VERSION_STRING "2.3-dev" +#define WRENCH_VERSION_STRING "2.3" }// namespace wrench