From 7c5203bc1d37e72abcc61fb3e4014c2455f2b6c6 Mon Sep 17 00:00:00 2001 From: 1computer1 Date: Tue, 21 May 2019 12:03:38 -0400 Subject: [PATCH] Bump version to 1.5.0 --- CHANGELOG.md | 8 ++++++++ README.md | 2 ++ 2 files changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7472f4e..f304c25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index f34cc6e..50540a5 100644 --- a/README.md +++ b/README.md @@ -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.