Skip to content

Commit 5d3def6

Browse files
Merge pull request #357 from gliderlabs/master
release 0.4.1
2 parents 3129ce6 + 074dca8 commit 5d3def6

File tree

10 files changed

+20
-10
lines changed

10 files changed

+20
-10
lines changed

CHANGELOG.md

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

1111
### Changed
1212

13+
## [0.4.1] - 2018-04-23
14+
### Changed
15+
- @nolith Update java to version v60
16+
- @michaelshobbs Update go to version v86
17+
- @michaelshobbs Update nodejs to version v123
18+
- @michaelshobbs Update php to version v134
19+
- @michaelshobbs Update python to version v132
20+
- @michaelshobbs Update ruby to version v178
21+
1322
## [0.4.0] - 2018-03-10
1423
### Changed
1524
- @michaelshobbs pin docker version for local build target
@@ -463,7 +472,8 @@ All notable changes to this project will be documented in this file.
463472
- User for `buildpack-build` is `$USER` or randomized
464473
- User for `procfile-exec` is `$USER` or detected from `/app`
465474

466-
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.0...HEAD
475+
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.1...HEAD
476+
[0.4.1]: https://github.com/gliderlabs/herokuish/compare/v0.4.0...v0.4.1
467477
[0.4.0]: https://github.com/gliderlabs/herokuish/compare/v0.3.36...v0.4.0
468478
[0.3.36]: https://github.com/gliderlabs/herokuish/compare/v0.3.35...v0.3.36
469479
[0.3.35]: https://github.com/gliderlabs/herokuish/compare/v0.3.34...v0.3.35

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v85
1+
v86
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v59
1+
v60
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v121
1+
v123
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v132
1+
v134
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v124
1+
v132
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v174
1+
v178

0 commit comments

Comments
 (0)