Skip to content

Commit 02d5d55

Browse files
committed
Release v2.2.0
This version is based on Valgrind-3.15.0. ### Added - [EXPERIMENTAL] MCA back-ends - use with valgrind option `--backend=mcaquad` - deactivate support for MCA back-ends with configure switch `--enable-verrou-quad=no` - [EXPERIMENTAL] code coverage generation (`--trace=FILENAME`) - Generate the list of cancellations (`--cc-gen-source`) ### Changed - Two scripts `verrou_dd_line` and `verrou_dd_sym` replace `verrou_dd`. - Bug fix related to the random generator. - Bug fix: use the PID to generate the search space name. This allows using Delta-Debugging techniques with MPI programs. - Bug fix: correctly handle unnamed objects and source file lines. - Bug fix: allow gdb integration. (fixes gh-24)
1 parent b658103 commit 02d5d55

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,33 @@
11
# Change Log
22

33

4-
## [UNRELEASED]
4+
## v2.2.0 - 2020-01-08
55

66
This version is based on Valgrind-3.15.0.
77

88
### Added
99

10+
- [EXPERIMENTAL] MCA back-ends
11+
- use with valgrind option `--backend=mcaquad`
12+
- deactivate support for MCA back-ends with configure switch `--enable-verrou-quad=no`
13+
14+
- [EXPERIMENTAL] code coverage generation (`--trace=FILENAME`)
15+
16+
- Generate the list of cancellations (`--cc-gen-source`)
1017

1118
### Changed
1219

20+
- Two scripts `verrou_dd_line` and `verrou_dd_sym` replace
21+
`verrou_dd`.
22+
23+
- Bug fix related to the random generator.
24+
25+
- Bug fix: use the PID to generate the search space name. This allows
26+
using Delta-Debugging techniques with MPI programs.
27+
28+
- Bug fix: correctly handle unnamed objects and source file lines.
29+
30+
- Bug fix: allow gdb integration. (fixes gh-24)
1331

1432
---
1533

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,18 @@ are likely to be responsible for Floating-Point-related instabilities.
2222
The documentation for Verrou is available as a dedicated [chapter in the
2323
Valgrind manual](http://edf-hpc.github.io/verrou/vr-manual.html).
2424

25+
**NB:** This is released version 2.2.0 of Verrou, based on Valgrind
26+
v3.15.0. The development version of Verrou can always be found in
27+
the [`master`](https://github.com/edf-hpc/verrou/) branch. For other
28+
versions, please consult the list of
29+
[releases](https://github.com/edf-hpc/verrou/releases).
2530

2631
## Installation
2732

2833
### Get the sources
2934

3035
The preferred way to get Verrou sources is to download the latest *stable*
31-
version: [v2.1.0](https://github.com/edf-hpc/verrou/releases/latest).
36+
version: [v2.2.0](https://github.com/edf-hpc/verrou/releases/latest).
3237
Older versions are available in the [releases](https://github.com/edf-hpc/verrou/releases)
3338
page. After downloading one of the released versions, skip to the "Configure
3439
and build" section below.

release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Notes about the release process
22

33
```
4-
VERSION=2.1.0
4+
VERSION=2.2.0
55
```
66

77
## Update the valgrind patch

valgrind.diff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ index f8c798bf3..4eb86290d 100755
5151

5252
# Process this file with autoconf to produce a configure script.
5353
-AC_INIT([Valgrind],[3.15.0],[[email protected]])
54-
+AC_INIT([Valgrind],[3.15.0+verrou-dev],[[email protected]])
54+
+AC_INIT([Valgrind],[3.15.0+verrou-2.2.0],[[email protected]])
5555
AC_CONFIG_SRCDIR(coregrind/m_main.c)
5656
AC_CONFIG_HEADERS([config.h])
5757
AM_INIT_AUTOMAKE([foreign dist-bzip2 subdir-objects])
@@ -168,7 +168,7 @@ index fc5629db4..6a3de186a 100644
168168
<!-- valgrind release + version stuff -->
169169
<!ENTITY rel-type "Release">
170170
-<!ENTITY rel-version "3.15.0">
171-
+<!ENTITY rel-version "3.15.0+verrou-dev">
171+
+<!ENTITY rel-version "3.15.0+verrou-2.2.0">
172172
<!ENTITY rel-date "12 April 2019">
173173

174174
<!-- where the docs are installed -->

0 commit comments

Comments
 (0)