Skip to content

Commit

Permalink
Merge pull request #154 from gliderlabs/master
Browse files Browse the repository at this point in the history
release 0.3.13
  • Loading branch information
michaelshobbs committed May 9, 2016
2 parents f9e5134 + 509f69b commit 3032d4c
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 5 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ All notable changes to this project will be documented in this file.
### Changed


## [0.3.13] - 2016-05-09
### Fixed
- @michaelshobbs ensure correct permissions on tgz buildpack directories

### Changed
- @michaelshobbs Update php to version v102
- @michaelshobbs Update go to version v36


## [0.3.12] - 2016-04-27
### Fixed
- @michaelshobbs try testing port more times before continuing. add output when testing for a listener
Expand Down Expand Up @@ -203,7 +212,8 @@ All notable changes to this project will be documented in this file.
- User for `buildpack-build` is `$USER` or randomized
- User for `procfile-exec` is `$USER` or detected from `/app`

[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.12...HEAD
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.13...HEAD
[0.3.13]: https://github.com/gliderlabs/herokuish/compare/v0.3.12...v0.3.13
[0.3.12]: https://github.com/gliderlabs/herokuish/compare/v0.3.11...v0.3.12
[0.3.11]: https://github.com/gliderlabs/herokuish/compare/v0.3.10...v0.3.11
[0.3.10]: https://github.com/gliderlabs/herokuish/compare/v0.3.9...v0.3.10
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM heroku/cedar:14
RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.12/herokuish_0.3.12_linux_x86_64.tgz \
RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.13/herokuish_0.3.13_linux_x86_64.tgz \
--silent -L | tar -xzC /bin
RUN /bin/herokuish buildpack install \
&& ln -s /bin/herokuish /build \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
NAME = herokuish
HARDWARE = $(shell uname -m)
VERSION ?= 0.3.12
VERSION ?= 0.3.13
IMAGE_NAME ?= $(NAME)
BUILD_TAG ?= dev

Expand Down
2 changes: 1 addition & 1 deletion buildpacks/buildpack-go/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v34
v36
2 changes: 1 addition & 1 deletion buildpacks/buildpack-php/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v101
v102
2 changes: 2 additions & 0 deletions include/buildpack.bash
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ buildpack-install() {
echo "Downloading '$url' into '$target_path'..."
mkdir -p "$target_path"
curl -s --retry 2 "$url" | tar "$tar_args" "$target_path"
chown -R root:root "$target_path"
chmod 755 "$target_path"
fi
rm -rf "$target_path/.git"
}
Expand Down

0 comments on commit 3032d4c

Please sign in to comment.