Skip to content

Commit

Permalink
Preparing release 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
henricasanova committed Sep 10, 2024
1 parent a6a4335 commit 4a9c1b5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand Down
6 changes: 5 additions & 1 deletion RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@ 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
- Countless minor bug fixes and code updates

### 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`.
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion doc/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ And, one of the following: - **g++** - version 7.5 or higher - **clang**
Required Dependencies
---------------------

- `SimGrid <https://simgrid.org/>`__ – version 3.34
- `SimGrid <https://simgrid.org/>`__ – version 3.36
- `JSON for Modern C++ <https://github.com/nlohmann/json>`__ – version
3.9.0 or higher

Expand Down
2 changes: 1 addition & 1 deletion include/wrench/simulation/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
*/

namespace wrench {
#define WRENCH_VERSION_STRING "2.3-dev"
#define WRENCH_VERSION_STRING "2.3"
}// namespace wrench

0 comments on commit 4a9c1b5

Please sign in to comment.