Skip to content

Commit 89176cd

Browse files
Merge pull request #383 from gliderlabs/master
release 0.4.4
2 parents efdcc29 + 3a90a60 commit 89176cd

File tree

10 files changed

+25
-27
lines changed

10 files changed

+25
-27
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ All notable changes to this project will be documented in this file.
1010

1111
### Changed
1212

13+
## [0.4.4] - 2018-08-20
14+
### Changed
15+
- @natanrolnik Remove .git directory deletion upon build pack installation
16+
- @michaelshobbs Update go to version v90
17+
- @michaelshobbs Update php to version v143
18+
- @michaelshobbs Update python to version v138
19+
- @michaelshobbs Update ruby to version v190
1320

1421
## [0.4.3] - 2018-07-03
1522
### Changed
@@ -493,7 +500,8 @@ All notable changes to this project will be documented in this file.
493500
- User for `buildpack-build` is `$USER` or randomized
494501
- User for `procfile-exec` is `$USER` or detected from `/app`
495502

496-
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.3...HEAD
503+
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.4...HEAD
504+
[0.4.4]: https://github.com/gliderlabs/herokuish/compare/v0.4.3...v0.4.4
497505
[0.4.3]: https://github.com/gliderlabs/herokuish/compare/v0.4.2...v0.4.3
498506
[0.4.2]: https://github.com/gliderlabs/herokuish/compare/v0.4.1...v0.4.2
499507
[0.4.1]: https://github.com/gliderlabs/herokuish/compare/v0.4.0...v0.4.1

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN apt-get update -qq \
1111
dist-upgrade \
1212
&& apt-get clean \
1313
&& rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/* /var/tmp/*
14-
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.4.3/herokuish_0.4.3_linux_x86_64.tgz" \
14+
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.4.4/herokuish_0.4.4_linux_x86_64.tgz" \
1515
--silent -L | tar -xzC /bin
1616
RUN /bin/herokuish buildpack install \
1717
&& 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.4.3
3+
VERSION ?= 0.4.4
44
IMAGE_NAME ?= $(NAME)
55
BUILD_TAG ?= dev
66

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Download and uncompress the latest binary tarball from [releases](https://github
1818
For example, you can do this directly in your Dockerfiles installing into `/bin` as one step:
1919

2020
```
21-
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.4.3/herokuish_0.4.3_linux_x86_64.tgz \
21+
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.4.4/herokuish_0.4.4_linux_x86_64.tgz \
2222
| tar -xzC /bin
2323
```
2424

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v89
1+
v90
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v137
1+
v143

buildpacks/buildpack-php/tests/php/composer.lock

+9-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v136
1+
v138
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v188
1+
v190

include/buildpack.bash

-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ buildpack-install() {
130130
chown -R root:root "$target_path"
131131
chmod 755 "$target_path"
132132
fi
133-
rm -rf "$target_path/.git"
134133
}
135134

136135
buildpack-list() {

0 commit comments

Comments
 (0)