Skip to content

Commit

Permalink
release 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelshobbs committed Jul 3, 2018
1 parent 6642f69 commit af35dd6
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@ All notable changes to this project will be documented in this file.

### Changed


## [0.4.3] - 2018-07-03
### Changed
- @webknjaz Upgrade python support to v3.7.0
- @michaelshobbs Update go to version v89
- @michaelshobbs Update gradle to version v27
- @michaelshobbs Update java to version v62
- @michaelshobbs Update php to version v137
- @michaelshobbs Update ruby to version v188
- @michaelshobbs Update scala to version v82

## [0.4.2] - 2018-05-10
- @peterhellberg Update go to version v87
- @michaelshobbs Update clojure to version v82
Expand Down Expand Up @@ -482,7 +493,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.2...HEAD
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.3...HEAD
[0.4.3]: https://github.com/gliderlabs/herokuish/compare/v0.4.2...v0.4.3
[0.4.2]: https://github.com/gliderlabs/herokuish/compare/v0.4.1...v0.4.2
[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
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.2/herokuish_0.4.2_linux_x86_64.tgz" \
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.4.3/herokuish_0.4.3_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.2
VERSION ?= 0.4.3
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.2/herokuish_0.4.2_linux_x86_64.tgz \
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.4.3/herokuish_0.4.3_linux_x86_64.tgz \
| tar -xzC /bin
```

Expand Down

0 comments on commit af35dd6

Please sign in to comment.