Skip to content

Commit f1d172f

Browse files
authored
0.3.5 release (#95)
1 parent 803f171 commit f1d172f

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

docs/src/changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@
1212

1313
### Security
1414

15+
## [`v0.3.5` (2022-10-13)](https://github.com/anupli/running-ng/releases/tag/v0.3.5)
16+
### Changed
17+
#### Commands
18+
- `runbms`: when a companion program exits with a non-zero code, a warning is generated instead of an exception to prevent stopping the entire experiment.
19+
1520
## [`v0.3.4` (2022-10-13)](https://github.com/anupli/running-ng/releases/tag/v0.3.4)
1621
### Fixed
1722
#### Commands

docs/src/references/suite.md

+3
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ configs:
8888
- "temurin-17"
8989
```
9090
In the log file, the output from the main program and the output from the companion program is separated by `*****`.
91+
A companion program should shutdown cleanly upon receiving `SIGINT` (Ctrl-C).
92+
In the case of `bpftrace`, one should avoid using `exit()`.
93+
Otherwise, a `SIGINT` during `exit()` will stop printing the rest of the maps, resulting in data loss.
9194

9295
`size`: specifying the size of input data.
9396
Note that the names of the sizes are subject to change depending on the DaCapo releases.

src/running/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
VERSION = (0, 3, 4)
1+
VERSION = (0, 3, 5)
22
__VERSION__ = '.'.join(map(str, VERSION))

0 commit comments

Comments
 (0)