File tree 6 files changed +17
-5
lines changed
6 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,15 @@ All notable changes to this project will be documented in this file.
11
11
### Changed
12
12
13
13
14
+ ## [ 0.3.13] - 2016-05-09
15
+ ### Fixed
16
+ - @michaelshobbs ensure correct permissions on tgz buildpack directories
17
+
18
+ ### Changed
19
+ - @michaelshobbs Update php to version v102
20
+ - @michaelshobbs Update go to version v36
21
+
22
+
14
23
## [ 0.3.12] - 2016-04-27
15
24
### Fixed
16
25
- @michaelshobbs try testing port more times before continuing. add output when testing for a listener
@@ -203,7 +212,8 @@ All notable changes to this project will be documented in this file.
203
212
- User for ` buildpack-build ` is ` $USER ` or randomized
204
213
- User for ` procfile-exec ` is ` $USER ` or detected from ` /app `
205
214
206
- [ unreleased ] : https://github.com/gliderlabs/herokuish/compare/v0.3.12...HEAD
215
+ [ unreleased ] : https://github.com/gliderlabs/herokuish/compare/v0.3.13...HEAD
216
+ [ 0.3.13 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.12...v0.3.13
207
217
[ 0.3.12 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.11...v0.3.12
208
218
[ 0.3.11 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.10...v0.3.11
209
219
[ 0.3.10 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.9...v0.3.10
Original file line number Diff line number Diff line change 1
1
FROM heroku/cedar:14
2
- RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.12 /herokuish_0.3.12_linux_x86_64 .tgz \
2
+ RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.13 /herokuish_0.3.13_linux_x86_64 .tgz \
3
3
--silent -L | tar -xzC /bin
4
4
RUN /bin/herokuish buildpack install \
5
5
&& ln -s /bin/herokuish /build \
Original file line number Diff line number Diff line change 1
1
NAME = herokuish
2
2
HARDWARE = $(shell uname -m)
3
- VERSION ?= 0.3.12
3
+ VERSION ?= 0.3.13
4
4
IMAGE_NAME ?= $(NAME )
5
5
BUILD_TAG ?= dev
6
6
Original file line number Diff line number Diff line change 1
- v34
1
+ v36
Original file line number Diff line number Diff line change 1
- v101
1
+ v102
Original file line number Diff line number Diff line change @@ -55,6 +55,8 @@ buildpack-install() {
55
55
echo " Downloading '$url ' into '$target_path '..."
56
56
mkdir -p " $target_path "
57
57
curl -s --retry 2 " $url " | tar " $tar_args " " $target_path "
58
+ chown -R root:root " $target_path "
59
+ chmod 755 " $target_path "
58
60
fi
59
61
rm -rf " $target_path /.git"
60
62
}
You can’t perform that action at this time.
0 commit comments