Skip to content

Commit eb86ebe

Browse files
committed
Release v1.1.2
1 parent 74bdd54 commit eb86ebe

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ If you don't have an internal apt server, you can use `dpkg -i` to install the
158158
One possibility is with the following commands in your Dockerfile:
159159

160160
```bash
161-
RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.1.1/dumb-init_1.1.1_amd64.deb
161+
RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.1.2/dumb-init_1.1.2_amd64.deb
162162
RUN dpkg -i dumb-init_*.deb
163163
```
164164

@@ -169,7 +169,7 @@ Since dumb-init is released as a statically-linked binary, you can usually just
169169
plop it into your images. Here's an example of doing that in a Dockerfile:
170170

171171
```bash
172-
RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.1.1/dumb-init_1.1.1_amd64
172+
RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.1.2/dumb-init_1.1.2_amd64
173173
RUN chmod +x /usr/local/bin/dumb-init
174174
```
175175

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.1
1+
1.1.2

VERSION.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// THIS FILE IS AUTOMATICALLY GENERATED
22
// Run `make VERSION.h` to update it after modifying VERSION.
33
unsigned char VERSION[] = {
4-
0x31, 0x2e, 0x31, 0x2e, 0x31, 0x0a
4+
0x31, 0x2e, 0x31, 0x2e, 0x32, 0x0a
55
};
66
unsigned int VERSION_len = 6;

debian/changelog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
dumb-init (1.1.2) unstable; urgency=low
2+
3+
* Fix race when the child exits very quickly that leads to dumb-init not
4+
reaping the child. This should be pretty rare and most likely to happen
5+
when dumb-init's child fails to exec (such as when you try to run a file
6+
that doesn't exist).
7+
8+
-- Chris Kuehl <ckuehl@yelp.com> Mon, 25 Jul 2016 22:46:40 -0700
9+
110
dumb-init (1.1.1) unstable; urgency=medium
211

312
* Fix segfault when passing unknown arguments (thanks @asottile for

0 commit comments

Comments
 (0)