Skip to content

Commit 28a7936

Browse files
committed
release 0.3.15
2 parents 378616c + 0946cc4 commit 28a7936

File tree

9 files changed

+22
-9
lines changed

9 files changed

+22
-9
lines changed

CHANGELOG.md

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

1313

14+
## [0.3.15] - 2016-07-14
15+
### Fixed
16+
- @joshmanders only delete $app_path if $import_path is not empty. fixes #111
17+
18+
### Changed
19+
- @michaelshobbs Update go to version v42
20+
- @michaelshobbs Update nodejs to version v91
21+
- @michaelshobbs Update php to version v108
22+
- @michaelshobbs Update python to version v81
23+
- @michaelshobbs Update scala to version v71
24+
25+
1426
## [0.3.14] - 2016-06-27
1527
### Added
1628
- @michaelshobbs implement heroku-like buildpack detect order and output. closes #133
@@ -225,7 +237,8 @@ All notable changes to this project will be documented in this file.
225237
- User for `buildpack-build` is `$USER` or randomized
226238
- User for `procfile-exec` is `$USER` or detected from `/app`
227239

228-
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.14...HEAD
240+
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.15...HEAD
241+
[0.3.15]: https://github.com/gliderlabs/herokuish/compare/v0.3.14...v0.3.15
229242
[0.3.14]: https://github.com/gliderlabs/herokuish/compare/v0.3.13...v0.3.14
230243
[0.3.13]: https://github.com/gliderlabs/herokuish/compare/v0.3.12...v0.3.13
231244
[0.3.12]: https://github.com/gliderlabs/herokuish/compare/v0.3.11...v0.3.12

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.14/herokuish_0.3.14_linux_x86_64.tgz \
2+
RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.15/herokuish_0.3.15_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.14
3+
VERSION ?= 0.3.15
44
IMAGE_NAME ?= $(NAME)
55
BUILD_TAG ?= dev
66

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v41
1+
v42
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v90
1+
v91
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v107
1+
v108
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v80
1+
v81
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v70
1+
v71

include/herokuish.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ herokuish-test() {
123123
main() {
124124
set -eo pipefail; [[ "$TRACE" ]] && set -x
125125

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

0 commit comments

Comments
 (0)