Bump version to 1.5.0
This commit is contained in:
parent
b7a76fe087
commit
7c5203bc1d
2 changed files with 10 additions and 0 deletions
|
@ -1,5 +1,13 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.5.0
|
||||||
|
|
||||||
|
- Added retry functionality and `retries` config option.
|
||||||
|
- Changed the strange kill message to just "Something went wrong".
|
||||||
|
- Fixed default values not being used.
|
||||||
|
- Fixed concurrency doing one more than set.
|
||||||
|
- Fixed multiple containers for one compiler being set up.
|
||||||
|
|
||||||
## 1.4.0
|
## 1.4.0
|
||||||
|
|
||||||
- Added more configuration options.
|
- Added more configuration options.
|
||||||
|
|
|
@ -144,3 +144,5 @@ The compiler names are the folder names under `docker/`.
|
||||||
- `timeout` Time limit for code in milliseconds.
|
- `timeout` Time limit for code in milliseconds.
|
||||||
- `concurrent` Number of code evaluations than can run at a time per container.
|
- `concurrent` Number of code evaluations than can run at a time per container.
|
||||||
The more that can run, the more resources a container would need.
|
The more that can run, the more resources a container would need.
|
||||||
|
- `retries` Maximum number of retries for an evaluation.
|
||||||
|
Evaluations are retried when all concurrent evaluations fail because one failed.
|
||||||
|
|
Loading…
Reference in a new issue