Skip to content

Commit 7057f93

Browse files
Merge pull request #367 from gliderlabs/master
release v0.4.2
2 parents 5d3def6 + 783f11b commit 7057f93

File tree

12 files changed

+23
-12
lines changed

12 files changed

+23
-12
lines changed

CHANGELOG.md

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

1111
### Changed
1212

13+
## [0.4.2] - 2018-05-10
14+
- @peterhellberg Update go to version v87
15+
- @michaelshobbs Update clojure to version v82
16+
- @michaelshobbs Update gradle to version v26
17+
- @michaelshobbs Update java to version v61
18+
- @michaelshobbs Update php to version v135
19+
- @michaelshobbs Update python to version v134
20+
- @michaelshobbs Update ruby to version v183
21+
- @michaelshobbs Update scala to version v81
22+
1323
## [0.4.1] - 2018-04-23
1424
### Changed
1525
- @nolith Update java to version v60
@@ -472,7 +482,8 @@ All notable changes to this project will be documented in this file.
472482
- User for `buildpack-build` is `$USER` or randomized
473483
- User for `procfile-exec` is `$USER` or detected from `/app`
474484

475-
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.1...HEAD
485+
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.2...HEAD
486+
[0.4.2]: https://github.com/gliderlabs/herokuish/compare/v0.4.1...v0.4.2
476487
[0.4.1]: https://github.com/gliderlabs/herokuish/compare/v0.4.0...v0.4.1
477488
[0.4.0]: https://github.com/gliderlabs/herokuish/compare/v0.3.36...v0.4.0
478489
[0.3.36]: https://github.com/gliderlabs/herokuish/compare/v0.3.35...v0.3.36

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.1/herokuish_0.4.1_linux_x86_64.tgz" \
14+
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.4.2/herokuish_0.4.2_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.1
3+
VERSION ?= 0.4.2
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.1/herokuish_0.4.1_linux_x86_64.tgz \
21+
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.4.2/herokuish_0.4.2_linux_x86_64.tgz \
2222
| tar -xzC /bin
2323
```
2424

Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v78
1+
v82
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v86
1+
v87
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v25
1+
v26
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v60
1+
v61
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v134
1+
v135
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v132
1+
v134
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v178
1+
v183
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v79
1+
v81

0 commit comments

Comments
 (0)