Skip to content

Commit

Permalink
Release v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskuehl committed May 2, 2016
1 parent 6449c1a commit 407813e
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ clean-tox:
rm -rf .tox

.PHONY: release
release: builddeb-docker sdist
release: sdist builddeb-docker
$(eval VERSION := $(shell cat VERSION))
# extract the built binary from the Debian package
dpkg-deb --fsys-tarfile dist/dumb-init_$(VERSION)_amd64.deb | \
Expand Down
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.1/dumb-init_1.0.1_amd64.deb
RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.0.2/dumb-init_1.0.2_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.1/dumb-init_1.0.1_amd64
RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.0.2/dumb-init_1.0.2_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.1
1.0.2
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, 0x31, 0x0a
0x31, 0x2e, 0x30, 0x2e, 0x32, 0x0a
};
unsigned int VERSION_len = 6;
9 changes: 9 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
dumb-init (1.0.2) unstable; urgency=low

* Rewrite signal handling to process signals synchronously (#72).
This shouldn't change behavior, but does eliminate some undefined behavior
and potential edge cases (especially race conditions).
Thanks @msavage20 for the bug report (again)!

-- Chris Kuehl <ckuehl@yelp.com> Mon, 02 May 2016 10:59:14 -0700

dumb-init (1.0.1) unstable; urgency=low

* Fix exit status for processes which exit due to signal (#59).
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ def get_outputs(self):
description='Simple wrapper script which proxies signals to a child',
version=open('VERSION').read().strip(),
author='Yelp',
url='https://github.com/Yelp/dumb-init/',
platforms='linux',
c_executables=[
Extension(
Expand Down

0 comments on commit 407813e

Please sign in to comment.