Skip to content

Commit 35a343f

Browse files
committed
Release v1.1.1
1 parent a6df732 commit 35a343f

File tree

4 files changed

+11
-4
lines changed

4 files changed

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

debian/changelog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
dumb-init (1.1.1) unstable; urgency=medium
2+
3+
* Fix segfault when passing unknown arguments (thanks @asottile for
4+
noticing!) (#88).
5+
6+
-- Chris Kuehl <[email protected]> Fri, 17 Jun 2016 12:11:22 -0700
7+
18
dumb-init (1.1.0) unstable; urgency=medium
29

310
* Add ability to rewrite incoming signals before proxying via the --rewrite

0 commit comments

Comments
 (0)