Skip to content

Commit

Permalink
Bump to v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskuehl committed Mar 11, 2016
1 parent b0ee633 commit 4f67cf8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,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:

```bash
RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.0.0/dumb-init_1.0.0_amd64.deb
RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.0.1/dumb-init_1.0.1_amd64.deb
RUN dpkg -i dumb-init_*.deb
```

Expand All @@ -141,7 +141,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:

```bash
RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.0.0/dumb-init_1.0.0_amd64
RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.0.1/dumb-init_1.0.1_amd64
RUN chmod +x /usr/local/bin/dumb-init
```

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

* Fix exit status for processes which exit due to signal (#59).
Thanks @msavage20 for the bug report!

-- Chris Kuehl <[email protected]> Fri, 11 Mar 2016 14:05:58 -0800

dumb-init (1.0.0) unstable; urgency=low

* Compile dumb-init with musl and strip the binary of unnecessary symbols
Expand Down

0 comments on commit 4f67cf8

Please sign in to comment.