Skip to content

Commit

Permalink
release 0.3.15
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelshobbs committed Jul 14, 2016
2 parents 378616c + 0946cc4 commit 28a7936
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 9 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@ All notable changes to this project will be documented in this file.
### Changed


## [0.3.15] - 2016-07-14
### Fixed
- @joshmanders only delete $app_path if $import_path is not empty. fixes #111

### Changed
- @michaelshobbs Update go to version v42
- @michaelshobbs Update nodejs to version v91
- @michaelshobbs Update php to version v108
- @michaelshobbs Update python to version v81
- @michaelshobbs Update scala to version v71


## [0.3.14] - 2016-06-27
### Added
- @michaelshobbs implement heroku-like buildpack detect order and output. closes #133
Expand Down Expand Up @@ -225,7 +237,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.14...HEAD
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.15...HEAD
[0.3.15]: https://github.com/gliderlabs/herokuish/compare/v0.3.14...v0.3.15
[0.3.14]: https://github.com/gliderlabs/herokuish/compare/v0.3.13...v0.3.14
[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
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.14/herokuish_0.3.14_linux_x86_64.tgz \
RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.15/herokuish_0.3.15_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.14
VERSION ?= 0.3.15
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 @@
v41
v42
2 changes: 1 addition & 1 deletion buildpacks/buildpack-nodejs/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v90
v91
2 changes: 1 addition & 1 deletion buildpacks/buildpack-php/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v107
v108
2 changes: 1 addition & 1 deletion buildpacks/buildpack-python/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v80
v81
2 changes: 1 addition & 1 deletion buildpacks/buildpack-scala/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v70
v71
2 changes: 1 addition & 1 deletion include/herokuish.bash
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ herokuish-test() {
main() {
set -eo pipefail; [[ "$TRACE" ]] && set -x

if [[ -d "$import_path" ]]; then
if [[ -d "$import_path" ]] && [[ -n "$(ls -A $import_path)" ]]; then
rm -rf "$app_path" && cp -r "$import_path" "$app_path"
fi

Expand Down

0 comments on commit 28a7936

Please sign in to comment.