diff --git a/.changes/nodejs.md b/.changes/nodejs.md deleted file mode 100644 index b1db179..0000000 --- a/.changes/nodejs.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"eval-stack": minor:feat ---- - -Add support for Deno.js, and other changes: - -- Use deno instead of node for executing JavaScript files, deny all permissions by default. -- Allow stderr to be piped since we can capture it for error messages. -- Disable core dumps by default. -- Set CPU time limits using `libc`. -- Use seccomp to restrict sys calls and fs operations. -- Prevent process to create subprocesses. diff --git a/CHANGELOG.md b/CHANGELOG.md index 856c029..e5a3d58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## \[0.2.0] + +### New Features + +- [`5867664`](https://github.com/swpu-acm/eval-stack/commit/5867664299189524d24c781d0826eaf7e932debd) ([#9](https://github.com/swpu-acm/eval-stack/pull/9) by [@fu050409](https://github.com/swpu-acm/eval-stack/../../fu050409)) Add support for Deno.js, and other changes: + + - Use deno instead of node for executing JavaScript files, deny all permissions by default. + - Allow stderr to be piped since we can capture it for error messages. + - Disable core dumps by default. + - Set CPU time limits using `libc`. + - Use seccomp to restrict sys calls and fs operations. + - Prevent process to create subprocesses. + ## \[0.1.2] ### New Features diff --git a/Cargo.toml b/Cargo.toml index fe9aa8f..e3e639d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "eval-stack" -version = "0.1.2" +version = "0.2.0" edition = "2021" authors = ["苏向夜 "] readme = "README.md"