Skip to content

Commit

Permalink
Release v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskuehl committed Aug 2, 2016
1 parent 301eedd commit 0f286e2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -158,7 +158,7 @@ If you don't have an internal apt server, you can use `dpkg -i` to install the
One possibility is with the following commands in your Dockerfile:

```Dockerfile
RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.1.2/dumb-init_1.1.2_amd64.deb
RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.1.3/dumb-init_1.1.3_amd64.deb
RUN dpkg -i dumb-init_*.deb
```

Expand All @@ -169,7 +169,7 @@ Since dumb-init is released as a statically-linked binary, you can usually just
plop it into your images. Here's an example of doing that in a Dockerfile:

```Dockerfile
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
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
RUN chmod +x /usr/local/bin/dumb-init
```

Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.1.2
1.1.3
2 changes: 1 addition & 1 deletion VERSION.h
@@ -1,6 +1,6 @@
// THIS FILE IS AUTOMATICALLY GENERATED
// Run `make VERSION.h` to update it after modifying VERSION.
unsigned char VERSION[] = {
0x31, 0x2e, 0x31, 0x2e, 0x32, 0x0a
0x31, 0x2e, 0x31, 0x2e, 0x33, 0x0a
};
unsigned int VERSION_len = 6;
7 changes: 7 additions & 0 deletions debian/changelog
@@ -1,3 +1,10 @@
dumb-init (1.1.3) unstable; urgency=low

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

-- Chris Kuehl <ckuehl@yelp.com> Tue, 02 Aug 2016 10:57:11 -0700

dumb-init (1.1.2) unstable; urgency=low

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

0 comments on commit 0f286e2

Please sign in to comment.