Skip to content

Commit 38dc560

Browse files
committed
Release v1.1.0
1 parent 2d5483d commit 38dc560

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-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.0.3/dumb-init_1.0.3_amd64.deb
161+
RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.1.0/dumb-init_1.1.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
```bash
172-
RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.0.3/dumb-init_1.0.3_amd64
172+
RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.1.0/dumb-init_1.1.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.0.3
1+
1.1.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, 0x30, 0x2e, 0x33, 0x0a
4+
0x31, 0x2e, 0x31, 0x2e, 0x30, 0x0a
55
};
66
unsigned int VERSION_len = 6;

debian/changelog

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
dumb-init (1.1.0) unstable; urgency=medium
2+
3+
* Add ability to rewrite incoming signals before proxying via the --rewrite
4+
flag. Thanks @mcclurmc for the PR (#83)!
5+
* Add ability to not rewrite incoming "suspend" job control signals in
6+
setsid mode (#85).
7+
* Add ability to ignore (not proxy) incoming signals (#86).
8+
9+
-- Chris Kuehl <ckuehl@yelp.com> Tue, 14 Jun 2016 11:45:50 -0700
10+
111
dumb-init (1.0.3) unstable; urgency=medium
212

313
* Fix incorrect error message when calling with bad arguments (e.g. a

0 commit comments

Comments
 (0)