Skip to content

Commit

Permalink
v1.10.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fhunleth committed Jul 1, 2021
1 parent 4ccc19f commit 9f0348a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 <resource:soft_limit:hard_limit>. 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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=1.9.0
VERSION=1.10.0

CFLAGS+=-Wall -Wextra -O2

Expand Down

0 comments on commit 9f0348a

Please sign in to comment.