Release 0.8.2

Oops; Travis doesn't like seeing a release commit being rebased.
This commit is contained in:
Thomas Orozco 2015-10-31 15:37:56 +01:00
parent 486f79fe8a
commit 9bfb4a505f
3 changed files with 4 additions and 4 deletions

View File

@ -34,8 +34,8 @@ deploy:
file:
- "./dist/tini"
- "./dist/tini-static"
- "./dist/tini_0.8.1.deb"
- "./dist/tini_0.8.1.rpm"
- "./dist/tini_0.8.2.deb"
- "./dist/tini_0.8.2.rpm"
on:
repo: krallin/tini
tags: true

View File

@ -4,7 +4,7 @@ project (tini C)
# Config
set (tini_VERSION_MAJOR 0)
set (tini_VERSION_MINOR 8)
set (tini_VERSION_PATCH 1)
set (tini_VERSION_PATCH 2)
# Extract git version and dirty-ness
execute_process (

View File

@ -37,7 +37,7 @@ In Docker, you will want to use an entrypoint so you don't have to remember
to manually invoke Tini:
# Add Tini
ENV TINI_VERSION v0.8.1
ENV TINI_VERSION v0.8.2
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
RUN chmod +x /tini
ENTRYPOINT ["/tini", "--"]