Skip to content

Commit

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

### Changed

## [0.4.10] - 2019-03-14
### Changed
- @michaelshobbs Update go to version v104
- @michaelshobbs Update nodejs to version v142
- @michaelshobbs Update php to version v151
- @michaelshobbs Update ruby to version v200

## [0.4.9] - 2019-03-07
### Changed
- @tnir Update go to version v102 to support Go 1.12
Expand Down Expand Up @@ -545,7 +552,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.9...HEAD
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.10...HEAD
[0.4.10]: https://github.com/gliderlabs/herokuish/compare/v0.4.9...v0.4.10
[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
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.9/herokuish_0.4.9_linux_x86_64.tgz" \
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.4.10/herokuish_0.4.10_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.9
VERSION ?= 0.4.10
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.9/herokuish_0.4.9_linux_x86_64.tgz \
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.4.10/herokuish_0.4.10_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 @@
v102
v104
2 changes: 1 addition & 1 deletion buildpacks/buildpack-nodejs/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v139
v142
2 changes: 1 addition & 1 deletion buildpacks/buildpack-php/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v150
v151
2 changes: 1 addition & 1 deletion buildpacks/buildpack-ruby/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v199
v200

0 comments on commit c2aa251

Please sign in to comment.