Skip to content

Commit efdcc29

Browse files
Merge pull request #375 from gliderlabs/master
release 0.4.3
2 parents 7057f93 + 1fa6d35 commit efdcc29

File tree

11 files changed

+23
-11
lines changed

11 files changed

+23
-11
lines changed

CHANGELOG.md

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

1111
### Changed
1212

13+
14+
## [0.4.3] - 2018-07-03
15+
### Changed
16+
- @webknjaz Upgrade python support to v3.7.0
17+
- @michaelshobbs Update go to version v89
18+
- @michaelshobbs Update gradle to version v27
19+
- @michaelshobbs Update java to version v62
20+
- @michaelshobbs Update php to version v137
21+
- @michaelshobbs Update ruby to version v188
22+
- @michaelshobbs Update scala to version v82
23+
1324
## [0.4.2] - 2018-05-10
1425
- @peterhellberg Update go to version v87
1526
- @michaelshobbs Update clojure to version v82
@@ -482,7 +493,8 @@ All notable changes to this project will be documented in this file.
482493
- User for `buildpack-build` is `$USER` or randomized
483494
- User for `procfile-exec` is `$USER` or detected from `/app`
484495

485-
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.2...HEAD
496+
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.3...HEAD
497+
[0.4.3]: https://github.com/gliderlabs/herokuish/compare/v0.4.2...v0.4.3
486498
[0.4.2]: https://github.com/gliderlabs/herokuish/compare/v0.4.1...v0.4.2
487499
[0.4.1]: https://github.com/gliderlabs/herokuish/compare/v0.4.0...v0.4.1
488500
[0.4.0]: https://github.com/gliderlabs/herokuish/compare/v0.3.36...v0.4.0

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v87
1+
v89
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v26
1+
v27
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v61
1+
v62
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v135
1+
v137
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v134
1+
v136
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v183
1+
v188
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v81
1+
v82

0 commit comments

Comments
 (0)