diff --git a/CHANGELOG.md b/CHANGELOG.md index 63250d0..bff4bce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## v1.10.0 + +* New features + * Added `--limit` option to enable core dumps, increase the number of + processes, file descriptors and other settings that the `ulimit` command + is normally used for. + + Use it like this: + + ``` + --limit core:456:unlimited + ``` + + The format is . The resources should be + specified as lower case and can be found on the `setrlimit(2)` man page. + The soft_limit and hard_limit can be either numbers or the word + `infinity`. + +* Bug fixes + * Double the max length of release version names to 32 characters. This should + hopefully be more than sufficient now. + ## v1.9.0 * New features diff --git a/Makefile b/Makefile index 2996373..2ea0a86 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=1.9.0 +VERSION=1.10.0 CFLAGS+=-Wall -Wextra -O2