Skip to content

Commit

Permalink
Merge pull request #357 from gliderlabs/master
Browse files Browse the repository at this point in the history
release 0.4.1
  • Loading branch information
michaelshobbs authored Apr 23, 2018
2 parents 3129ce6 + 074dca8 commit 5d3def6
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 10 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ All notable changes to this project will be documented in this file.

### Changed

## [0.4.1] - 2018-04-23
### Changed
- @nolith Update java to version v60
- @michaelshobbs Update go to version v86
- @michaelshobbs Update nodejs to version v123
- @michaelshobbs Update php to version v134
- @michaelshobbs Update python to version v132
- @michaelshobbs Update ruby to version v178

## [0.4.0] - 2018-03-10
### Changed
- @michaelshobbs pin docker version for local build target
Expand Down Expand Up @@ -463,7 +472,8 @@ All notable changes to this project will be documented in this file.
- User for `buildpack-build` is `$USER` or randomized
- User for `procfile-exec` is `$USER` or detected from `/app`

[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.0...HEAD
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.1...HEAD
[0.4.1]: https://github.com/gliderlabs/herokuish/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/gliderlabs/herokuish/compare/v0.3.36...v0.4.0
[0.3.36]: https://github.com/gliderlabs/herokuish/compare/v0.3.35...v0.3.36
[0.3.35]: https://github.com/gliderlabs/herokuish/compare/v0.3.34...v0.3.35
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN apt-get update -qq \
dist-upgrade \
&& apt-get clean \
&& rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/* /var/tmp/*
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.4.0/herokuish_0.4.0_linux_x86_64.tgz" \
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.4.1/herokuish_0.4.1_linux_x86_64.tgz" \
--silent -L | tar -xzC /bin
RUN /bin/herokuish buildpack install \
&& ln -s /bin/herokuish /build \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
NAME = herokuish
HARDWARE = $(shell uname -m)
VERSION ?= 0.4.0
VERSION ?= 0.4.1
IMAGE_NAME ?= $(NAME)
BUILD_TAG ?= dev

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Download and uncompress the latest binary tarball from [releases](https://github
For example, you can do this directly in your Dockerfiles installing into `/bin` as one step:

```
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.4.0/herokuish_0.4.0_linux_x86_64.tgz \
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.4.1/herokuish_0.4.1_linux_x86_64.tgz \
| tar -xzC /bin
```

Expand Down
2 changes: 1 addition & 1 deletion buildpacks/buildpack-go/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v85
v86
2 changes: 1 addition & 1 deletion buildpacks/buildpack-java/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v59
v60
2 changes: 1 addition & 1 deletion buildpacks/buildpack-nodejs/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v121
v123
2 changes: 1 addition & 1 deletion buildpacks/buildpack-php/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v132
v134
2 changes: 1 addition & 1 deletion buildpacks/buildpack-python/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v124
v132
2 changes: 1 addition & 1 deletion buildpacks/buildpack-ruby/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v174
v178

0 comments on commit 5d3def6

Please sign in to comment.