Skip to content

Commit fcde73c

Browse files
committed
Bump version 1.14.1 -> 1.15.0
Signed-off-by: Sylvain Hellegouarch <sh@defuze.org>
1 parent 313ae8d commit fcde73c

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,19 @@
22

33
## [Unreleased][]
44

5-
[Unreleased]: https://github.com/chaostoolkit/chaostoolkit-lib/compare/1.14.2...HEAD
5+
[Unreleased]: https://github.com/chaostoolkit/chaostoolkit-lib/compare/1.15.0...HEAD
6+
7+
## [1.15.0][] - 2020-09-11
8+
9+
[1.15.0]: https://github.com/chaostoolkit/chaostoolkit-lib/compare/1.14.1...1.15.0
610

711
### Added
812

9-
- Raise the `chaoslib.execeptions.InterruptExecution` on `SIGTERM`
10-
- New exception `chaoslib.execeptions.ExperimentExitedException` that can only
13+
- Raise the `chaoslib.exceptions.InterruptExecution` on `SIGTERM`
14+
- New exception `chaoslib.exceptions.ExperimentExitedException` that can only
1115
be injected into blocking background activities when we received the SIGUSR2
1216
signal
13-
- We now inject `chaoslib.execeptions.ExperimentExitedException` into blocking
17+
- We now inject `chaoslib.exceptions.ExperimentExitedException` into blocking
1418
background activities when we received the SIGUSR2 signal. This is relying
1519
on https://docs.python.org/3/c-api/init.html#c.PyThreadState_SetAsyncExc
1620
There is much we can to interrupt blocking calls and the limit is now reached

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# chaostoolkit-lib
1+
# Chaos Toolkit Core Library
22

33
[![Version](https://img.shields.io/pypi/v/chaostoolkit-lib.svg)](https://img.shields.io/pypi/v/chaostoolkit-lib.svg)
44
[![License](https://img.shields.io/pypi/l/chaostoolkit-lib.svg)](https://img.shields.io/pypi/l/chaostoolkit-lib.svg)

chaoslib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
__all__ = ["__version__", "decode_bytes", "substitute", "merge_vars",
2828
"convert_vars"]
29-
__version__ = '1.14.1'
29+
__version__ = '1.15.0'
3030

3131

3232
def substitute(data: Union[None, str, Dict[str, Any], List],

0 commit comments

Comments
 (0)