Bump to v0.3.1

This commit is contained in:
Chris Kuehl 2015-09-29 11:19:05 -07:00
parent ebafb14130
commit 43a7e40563
3 changed files with 8 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: One possibility is with the following commands in your Dockerfile:
```bash ```bash
RUN wget https://github.com/Yelp/dumb-init/releases/download/v0.3.0/dumb-init_0.3.0_amd64.deb RUN wget https://github.com/Yelp/dumb-init/releases/download/v0.3.1/dumb-init_0.3.1_amd64.deb
RUN dpkg -i dumb-init_*.deb RUN dpkg -i dumb-init_*.deb
``` ```

6
debian/changelog vendored
View file

@ -1,3 +1,9 @@
dumb-init (0.3.1) unstable; urgency=medium
* Exit nonzero if exec() fails (such as trying to run a nonexistent process)
-- Chris Kuehl <ckuehl@yelp.com> Tue, 29 Sep 2015 11:18:12 -0700
dumb-init (0.3.0) unstable; urgency=low dumb-init (0.3.0) unstable; urgency=low
* Send TERM to all processes in the session when the primary child dies when * Send TERM to all processes in the session when the primary child dies when

View file

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