Skip to content

Commit 3032d4c

Browse files
committed
Merge pull request #154 from gliderlabs/master
release 0.3.13
2 parents f9e5134 + 509f69b commit 3032d4c

File tree

6 files changed

+17
-5
lines changed

6 files changed

+17
-5
lines changed

CHANGELOG.md

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

1313

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+
1423
## [0.3.12] - 2016-04-27
1524
### Fixed
1625
- @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.
203212
- User for `buildpack-build` is `$USER` or randomized
204213
- User for `procfile-exec` is `$USER` or detected from `/app`
205214

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
207217
[0.3.12]: https://github.com/gliderlabs/herokuish/compare/v0.3.11...v0.3.12
208218
[0.3.11]: https://github.com/gliderlabs/herokuish/compare/v0.3.10...v0.3.11
209219
[0.3.10]: https://github.com/gliderlabs/herokuish/compare/v0.3.9...v0.3.10

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.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 \
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.12
3+
VERSION ?= 0.3.13
44
IMAGE_NAME ?= $(NAME)
55
BUILD_TAG ?= dev
66

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v34
1+
v36
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v101
1+
v102

include/buildpack.bash

+2
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ buildpack-install() {
5555
echo "Downloading '$url' into '$target_path'..."
5656
mkdir -p "$target_path"
5757
curl -s --retry 2 "$url" | tar "$tar_args" "$target_path"
58+
chown -R root:root "$target_path"
59+
chmod 755 "$target_path"
5860
fi
5961
rm -rf "$target_path/.git"
6062
}

0 commit comments

Comments
 (0)