Skip to content

Commit 7ca7e44

Browse files
committed
Release v1.2.0
1 parent b66cbb0 commit 7ca7e44

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-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
```Dockerfile
161-
RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.1.3/dumb-init_1.1.3_amd64.deb
161+
RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.2.0/dumb-init_1.2.0_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
```Dockerfile
172-
RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.1.3/dumb-init_1.1.3_amd64
172+
RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.0/dumb-init_1.2.0_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.3
1+
1.2.0

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, 0x33, 0x0a
4+
0x31, 0x2e, 0x32, 0x2e, 0x30, 0x0a
55
};
66
unsigned int VERSION_len = 6;

debian/changelog

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
dumb-init (1.2.0) unstable; urgency=medium
2+
3+
* Hand the controlling TTY to the child process, if we have one (#122).
4+
5+
This fixes warnings that are printed when running a typical command like:
6+
docker run -ti <image> dumb-init bash
7+
...as well as allowing you to use job control.
8+
9+
Thanks to @ehlers for the patch, and @alhafoudh (and several others) for
10+
reporting the issue and providing details!
11+
12+
-- Chris Kuehl <[email protected]> Mon, 10 Oct 2016 14:09:57 -0700
13+
114
dumb-init (1.1.3) unstable; urgency=low
215

316
* Add support for FreeBSD kernel. Thanks @onlyjob for bringing this to our

0 commit comments

Comments
 (0)