Skip to content

Commit 6cbbc72

Browse files
Merge pull request #178 from gliderlabs/master
release 0.3.18
2 parents 50daab2 + 3921f4f commit 6cbbc72

File tree

7 files changed

+13
-6
lines changed

7 files changed

+13
-6
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ All notable changes to this project will be documented in this file.
1111
### Changed
1212

1313

14+
## [0.3.18] - 2016-07-29
15+
### Changed
16+
- @xtian Don't print .release file during build
17+
- @michaelshobbs Update php to version v109
18+
- @michaelshobbs michaelshobbs Update go to version v44
19+
- @michaelshobbs Update scala to version v72
20+
21+
1422
## [0.3.17] - 2016-07-14
1523
### Fixed
1624
- @michaelshobbs set unprivileged user/group to same name and test with this user

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM heroku/cedar:14
2-
RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.17/herokuish_0.3.17_linux_x86_64.tgz \
2+
RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.18/herokuish_0.3.18_linux_x86_64.tgz \
33
--silent -L | tar -xzC /bin
44
RUN /bin/herokuish buildpack install \
55
&& ln -s /bin/herokuish /build \

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
NAME = herokuish
22
HARDWARE = $(shell uname -m)
3-
VERSION ?= 0.3.17
3+
VERSION ?= 0.3.18
44
IMAGE_NAME ?= $(NAME)
55
BUILD_TAG ?= dev
66

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v42
1+
v44
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v108
1+
v109
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v71
1+
v72

include/buildpack.bash

-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ buildpack-execute() {
137137
unprivileged "$selected_path/bin/release" "$build_path" "$cache_path" > "$build_path/.release"
138138
fi
139139
if [[ -f "$build_path/.release" ]]; then
140-
cat "$build_path/.release"
141140
config_vars="$(cat $build_path/.release | yaml-get config_vars)"
142141
if [[ "$config_vars" ]]; then
143142
mkdir -p $build_path/.profile.d

0 commit comments

Comments
 (0)