Skip to content

Commit a9eadb5

Browse files
committed
Release v1.0.0
1 parent 87545be commit a9eadb5

File tree

5 files changed

+19
-11
lines changed

5 files changed

+19
-11
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,13 @@ of that after merging!
1919

2020
The process to release a new version is:
2121

22-
1. Update the version in `VERSION`
22+
1. Update the version in `VERSION` and run `make VERSION.h`
2323
2. Update the Debian changelog with `dch -v {new version}`.
2424
3. Update the two `wget` urls in the README to point to the new version.
25-
4. Commit the changes and tag the commit like `v1.0.0`.
26-
5. `git push --tags origin master`
27-
6. Run `make release`
25+
4. Run `make release`
26+
5. Commit the changes and tag the commit like `v1.0.0`.
27+
6. `git push --tags origin master`
2828
7. Run `twine upload --skip-existing dist/*.tar.gz` to upload the new version
2929
to PyPI
30-
8. Run `make builddeb-docker` and upload the resulting Debian package and
31-
binary (inside the `dist` directory) to a new [GitHub
32-
release](https://github.com/Yelp/dumb-init/releases)
30+
8. Upload the resulting Debian package and binary (inside the `dist` directory)
31+
to a new [GitHub release](https://github.com/Yelp/dumb-init/releases)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ If you don't have an internal apt server, you can use `dpkg -i` to install the
130130
One possibility is with the following commands in your Dockerfile:
131131

132132
```bash
133-
RUN wget https://github.com/Yelp/dumb-init/releases/download/v0.5.0/dumb-init_0.5.0_amd64.deb
133+
RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.0.0/dumb-init_1.0.0_amd64.deb
134134
RUN dpkg -i dumb-init_*.deb
135135
```
136136

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

143143
```bash
144-
RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v0.5.0/dumb-init_0.5.0_amd64
144+
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
145145
RUN chmod +x /usr/local/bin/dumb-init
146146
```
147147

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.0
1+
1.0.0

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-
0x30, 0x2e, 0x35, 0x2e, 0x30, 0x0a
4+
0x31, 0x2e, 0x30, 0x2e, 0x30, 0x0a
55
};
66
unsigned int VERSION_len = 6;

debian/changelog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
dumb-init (1.0.0) unstable; urgency=low
2+
3+
* Compile dumb-init with musl and strip the binary of unnecessary symbols
4+
(thanks Konrad Scherer)
5+
* Fix some typos (thanks Anthony Sottile)
6+
* Add a manpage to the Debian package
7+
8+
-- Chris Kuehl <[email protected]> Thu, 07 Jan 2016 15:00:19 -0800
9+
110
dumb-init (0.5.0) unstable; urgency=low
211

312
* Add command-line option parsing (supplements existing environment

0 commit comments

Comments
 (0)