From 18f5c63cd847f7fab3e3c1471be2e8d2ce353bbb Mon Sep 17 00:00:00 2001 From: Michael Hobbs Date: Tue, 3 May 2016 07:42:45 -0700 Subject: [PATCH 1/4] ensure correct permissions on tgz buildpack directories --- include/buildpack.bash | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/buildpack.bash b/include/buildpack.bash index 980649f46..6a1b5b2b0 100644 --- a/include/buildpack.bash +++ b/include/buildpack.bash @@ -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" } From c0cff3fa4cdc11f8eecf0d7b466e8d810b9c82e9 Mon Sep 17 00:00:00 2001 From: Michael Hobbs Date: Mon, 9 May 2016 10:03:38 -0700 Subject: [PATCH 2/4] Update php to version v102 --- buildpacks/buildpack-php/buildpack-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildpacks/buildpack-php/buildpack-version b/buildpacks/buildpack-php/buildpack-version index 341d442e5..164c9875a 100644 --- a/buildpacks/buildpack-php/buildpack-version +++ b/buildpacks/buildpack-php/buildpack-version @@ -1 +1 @@ -v101 +v102 From bb665c7d1cfcc52373abdbbd3ad46492340ee67d Mon Sep 17 00:00:00 2001 From: Michael Hobbs Date: Mon, 9 May 2016 10:03:29 -0700 Subject: [PATCH 3/4] Update go to version v36 --- buildpacks/buildpack-go/buildpack-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildpacks/buildpack-go/buildpack-version b/buildpacks/buildpack-go/buildpack-version index 81a718c1b..c5d5851e1 100644 --- a/buildpacks/buildpack-go/buildpack-version +++ b/buildpacks/buildpack-go/buildpack-version @@ -1 +1 @@ -v34 +v36 From 509f69b839e06c82bd2312694ed1dc6dd78acce3 Mon Sep 17 00:00:00 2001 From: Michael Hobbs Date: Mon, 9 May 2016 10:24:42 -0700 Subject: [PATCH 4/4] release 0.3.13 --- CHANGELOG.md | 12 +++++++++++- Dockerfile | 2 +- Makefile | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aada30529..b6b735392 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/Dockerfile b/Dockerfile index 9ca75d821..a10f0f699 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \ diff --git a/Makefile b/Makefile index da6b5a94b..b8968d6ba 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ NAME = herokuish HARDWARE = $(shell uname -m) -VERSION ?= 0.3.12 +VERSION ?= 0.3.13 IMAGE_NAME ?= $(NAME) BUILD_TAG ?= dev