Skip to content

Commit

Permalink
preparing release 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfsilva committed Sep 17, 2020
1 parent 7a5774b commit da32aed
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ set(CMAKE_CXX_STANDARD 11)
set(WRENCH_VERSION_MAJOR "1")
set(WRENCH_VERSION_MINOR "7")
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
21 changes: 18 additions & 3 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,26 @@
WRENCH Release Notes
------

### WRENCH 1.6
### WRENCH 1.7

(September 18, 2020) This release includes a series of **new features**, **enhancements**, and **bug fixes**, including:

- Redesign of the WRENCH Dashboard: includes a number of graphs for visualizing the Gantt chart of the workflow execution, host utilization, network bandwidth usage, and energy consumption ([#171](https://github.com/wrench-project/wrench/issues/171), [#183](https://github.com/wrench-project/wrench/issues/183), [#184](https://github.com/wrench-project/wrench/issues/184), [#185](https://github.com/wrench-project/wrench/issues/185), [#186](https://github.com/wrench-project/wrench/issues/186), [#173](https://github.com/wrench-project/wrench/issues/173), [#195](https://github.com/wrench-project/wrench/issues/195))
- Improvements to `BareMetalComputeService`: load is now equally distributed among hosts ([#169](https://github.com/wrench-project/wrench/issues/169)), and the service provides an API equivalent to the `squeue` Slurm command ([#176](https://github.com/wrench-project/wrench/issues/176))
- Improvements to `CloudComputeService`: added a function to get the `ComputeService` for a VM based on its name ([#187](https://github.com/wrench-project/wrench/issues/187))
- Improvements to `VirtualizedClusterComputeService`: added a function to get the physical host ([#190](https://github.com/wrench-project/wrench/issues/190))
- Enabled support for capturing network link's usage during the simulation ([#182](https://github.com/wrench-project/wrench/issues/182))
- Improvements to Simulation JSON output: added disk read/write failures ([#167](https://github.com/wrench-project/wrench/issues/167)), and network link usage ([#182](https://github.com/wrench-project/wrench/issues/182))
- Added an exception handling for ensuring a link bandwidth in the platform file is not set to zero ([#181](https://github.com/wrench-project/wrench/issues/181))
- Bug fixes and small enhancements: [#168](https://github.com/wrench-project/wrench/issues/168), [#172](https://github.com/wrench-project/wrench/issues/172), [#174](https://github.com/wrench-project/wrench/issues/174), [#178](https://github.com/wrench-project/wrench/issues/178), [#180](https://github.com/wrench-project/wrench/issues/180), [#191](https://github.com/wrench-project/wrench/issues/191), [#192](https://github.com/wrench-project/wrench/issues/192), [#200](https://github.com/wrench-project/wrench/issues/200)

**Note**: WRENCH 1.7 requires [SimGrid 3.25](https://simgrid.org).

(May 7, 2020) This release includes a series of new features and bug fixes, including:
---

### WRENCH 1.6

This release includes a series of **new features**, **enhancements**, and **bug fixes**, including:
(May 7, 2020) This release includes a series of **new features**, **enhancements**, and **bug fixes**, including:

- Refactored the WRENCH documentation: WRENCH 101 for users, and WRENCH 102 for developers ([#156](https://github.com/wrench-project/wrench/issues/156))
- New collection of examples provided with WRENCH distribution: over 10 examples of simulators ([#157](https://github.com/wrench-project/wrench/issues/157))
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 "1.7-dev"
#define WRENCH_VERSION_STRING "1.7"
}

0 comments on commit da32aed

Please sign in to comment.