Bump to v0.4.0

This commit is contained in:
Chris Kuehl 2015-09-29 13:46:23 -07:00
parent 2aa56d6aab
commit cd79164d94
3 changed files with 11 additions and 2 deletions

View file

@ -93,7 +93,7 @@ If you don't have an internal apt server, you can use `dpkg -i` to install the
One possibility is with the following commands in your Dockerfile:
```bash
RUN wget https://github.com/Yelp/dumb-init/releases/download/v0.3.1/dumb-init_0.3.1_amd64.deb
RUN wget https://github.com/Yelp/dumb-init/releases/download/v0.4.0/dumb-init_0.4.0_amd64.deb
RUN dpkg -i dumb-init_*.deb
```

9
debian/changelog vendored
View file

@ -1,3 +1,12 @@
dumb-init (0.4.0) unstable; urgency=medium
* Properly respond to job control signals (SIGTSTP, SIGTTIN, SIGTTOU).
This makes it possible to suspend dumb-init (and its child process) by
hitting ^Z in an interactive shell session.
-- Chris Kuehl <ckuehl@ocf.berkeley.edu> Tue, 29 Sep 2015 13:45:06 -0700
dumb-init (0.3.1) unstable; urgency=medium
* Exit nonzero if exec() fails (such as trying to run a nonexistent process)

View file

@ -87,7 +87,7 @@ class build_cexe(Command):
setup(
name='dumb-init',
description='Simple wrapper script which proxies signals to a child',
version='0.3.1',
version='0.4.0',
author='Yelp',
platforms='linux',