Skip to content

Commit 434dd95

Browse files
committed
Bump version to 0.4.0
New features: + Generate DEB and RPM packages
1 parent 813c1c5 commit 434dd95

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ deploy:
2424
secure: Yk90ANpSPv1iJy8QDXCPwfaSmEr/WIJ3bzhQ6X8JvZjfrwTosbh0HrUzQyeac3nyvNwj7YJRssolOFc21IBKPpCFTZqYxSkuLPU6ysG4HGHgN6YJhOMm4mG4KKJ6741q3DJendhZpalBhCEi+NcZK/PCSD97Vl4OqRjBUged0fs=
2525
file:
2626
- "./dist/tini"
27-
- "./dist/tini_0.3.4.deb"
28-
- "./dist/tini_0.3.4.rpm"
27+
- "./dist/tini_0.4.0.deb"
28+
- "./dist/tini_0.4.0.rpm"
2929
on:
3030
repo: krallin/tini
3131
tags: true

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ project (tini C)
33

44
# Config
55
set (tini_VERSION_MAJOR 0)
6-
set (tini_VERSION_MINOR 3)
7-
set (tini_VERSION_PATCH 4)
6+
set (tini_VERSION_MINOR 4)
7+
set (tini_VERSION_PATCH 0)
88
execute_process (COMMAND git log -n 1 --date=local --pretty=format:"%h" WORKING_DIRECTORY "${PROJECT_SOURCE_DIR}" OUTPUT_VARIABLE tini_VERSION_GIT)
99

1010
# Flags

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In Docker, you will want to use an entrypoint so you don't have to remember
2424
to manually invoke Tini:
2525

2626
# Add Tini
27-
ENV TINI_VERSION v0.3.4
27+
ENV TINI_VERSION v0.4.0
2828
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
2929
RUN chmod +x /tini
3030
ENTRYPOINT ["/tini", "--"]

0 commit comments

Comments
 (0)