Skip to content

Commit e7ff7f5

Browse files
committed
Release v1.2.1
1 parent 4daeedc commit e7ff7f5

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

README.md

Lines changed: 3 additions & 3 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.2.0/dumb-init_1.2.0_amd64.deb
161+
RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.2.1/dumb-init_1.2.1_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.2.0/dumb-init_1.2.0_amd64
172+
RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.1/dumb-init_1.2.1_amd64
173173
RUN chmod +x /usr/local/bin/dumb-init
174174
```
175175

@@ -183,7 +183,7 @@ install a C compiler (on Debian/Ubuntu, `apt-get install gcc` is sufficient),
183183
then just `pip install dumb-init`.
184184

185185
As of 1.2.0, the package at PyPI is available as a pre-built wheel archive and does not
186-
need to be compiled on common distributions.
186+
need to be compiled on common Linux distributions.
187187

188188

189189
## Usage

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.0
1+
1.2.1

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, 0x32, 0x2e, 0x30, 0x0a
4+
0x31, 0x2e, 0x32, 0x2e, 0x31, 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.1) unstable; urgency=medium
2+
3+
* Fix verbose debug logging for ignored signals.
4+
5+
Before this patch, they were reported in the verbose log as "forwarded
6+
signal 0 to children" instead of "not forwarding signal to children".
7+
8+
Since signal 0 is a noop, there is no actual behavior change here.
9+
10+
Thanks @kpengboy for the patch!
11+
12+
-- Chris Kuehl <[email protected]> Fri, 01 Dec 2017 10:00:27 -0800
13+
114
dumb-init (1.2.0) unstable; urgency=medium
215

316
* Hand the controlling TTY to the child process, if we have one (#122).

0 commit comments

Comments
 (0)