Skip to content

Commit

Permalink
Merge pull request #434 from gliderlabs/master
Browse files Browse the repository at this point in the history
release 0.4.9
  • Loading branch information
michaelshobbs authored Mar 7, 2019
2 parents c77c555 + 71dbcc2 commit 1777bf7
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 9 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ All notable changes to this project will be documented in this file.

### Changed

## [0.4.9] - 2019-03-07
### Changed
- @tnir Update go to version v102 to support Go 1.12
- @michaelshobbs Update java to version v63
- @michaelshobbs Update nodejs to version v139
- @michaelshobbs Update python to version v149
- @michaelshobbs Update ruby to version v199

## [0.4.8] - 2019-02-15
### Changed
- @nbyl Update gradle buildpack to v28
Expand Down Expand Up @@ -537,7 +545,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.8...HEAD
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.9...HEAD
[0.4.9]: https://github.com/gliderlabs/herokuish/compare/v0.4.8...v0.4.9
[0.4.8]: https://github.com/gliderlabs/herokuish/compare/v0.4.7...v0.4.8
[0.4.7]: https://github.com/gliderlabs/herokuish/compare/v0.4.6...v0.4.7
[0.4.6]: https://github.com/gliderlabs/herokuish/compare/v0.4.5...v0.4.6
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.8/herokuish_0.4.8_linux_x86_64.tgz" \
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.4.9/herokuish_0.4.9_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.8
VERSION ?= 0.4.9
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.8/herokuish_0.4.8_linux_x86_64.tgz \
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.4.9/herokuish_0.4.9_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 @@
v100
v102
2 changes: 1 addition & 1 deletion buildpacks/buildpack-java/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v62
v63
2 changes: 1 addition & 1 deletion buildpacks/buildpack-nodejs/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v137
v139
2 changes: 1 addition & 1 deletion buildpacks/buildpack-python/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v147
v149
2 changes: 1 addition & 1 deletion buildpacks/buildpack-ruby/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v198
v199

0 comments on commit 1777bf7

Please sign in to comment.