Bump version to 1.5.0

This commit is contained in:
1computer1 2019-05-21 12:03:38 -04:00
parent b7a76fe087
commit 7c5203bc1d
2 changed files with 10 additions and 0 deletions

View file

@ -1,5 +1,13 @@
# 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
- Added more configuration options.

View file

@ -144,3 +144,5 @@ The compiler names are the folder names under `docker/`.
- `timeout` Time limit for code in milliseconds.
- `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.
- `retries` Maximum number of retries for an evaluation.
Evaluations are retried when all concurrent evaluations fail because one failed.