Skip to content

Commit 0f286e2

Browse files
committed
Release v1.1.3
1 parent 301eedd commit 0f286e2

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
```Dockerfile
161-
RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.1.2/dumb-init_1.1.2_amd64.deb
161+
RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.1.3/dumb-init_1.1.3_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.2/dumb-init_1.1.2_amd64
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
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.2
1+
1.1.3

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, 0x32, 0x0a
4+
0x31, 0x2e, 0x31, 0x2e, 0x33, 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.3) unstable; urgency=low
2+
3+
* Add support for FreeBSD kernel. Thanks @onlyjob for bringing this to our
4+
attention.
5+
6+
-- Chris Kuehl <[email protected]> Tue, 02 Aug 2016 10:57:11 -0700
7+
18
dumb-init (1.1.2) unstable; urgency=low
29

310
* Fix race when the child exits very quickly that leads to dumb-init not

0 commit comments

Comments
 (0)