Skip to content

Commit

Permalink
Merge pull request #410 from gliderlabs/master
Browse files Browse the repository at this point in the history
release 0.4.6
  • Loading branch information
josegonzalez authored Dec 27, 2018
2 parents 5aa8a6e + 381ca2b commit 3629f84
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 12 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,19 @@ All notable changes to this project will be documented in this file.

### Changed

## [0.4.6] - 2018-12-26
### Fixed
- @HillLiu update golang to 1.11.2 for docker build

### Changed
- @josegonzalez Update go to version v98
- @josegonzalez Update nodejs to version v134
- @josegonzalez Update python to version v146
- @josegonzalez Update php to version v148
- @josegonzalez Update ruby to version v197
- @josegonzalez Update scala to version v83
- @josegonzalez Update static to version v10

## [0.4.5] - 2018-10-26
### Changed
- @michaelshobbs Update nodejs to version v130 fb65b5a
Expand Down Expand Up @@ -508,7 +521,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.5...HEAD
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.6...HEAD
[0.4.6]: https://github.com/gliderlabs/herokuish/compare/v0.4.5...v0.4.6
[0.4.5]: https://github.com/gliderlabs/herokuish/compare/v0.4.4...v0.4.5
[0.4.4]: https://github.com/gliderlabs/herokuish/compare/v0.4.3...v0.4.4
[0.4.3]: https://github.com/gliderlabs/herokuish/compare/v0.4.2...v0.4.3
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.5/herokuish_0.4.5_linux_x86_64.tgz" \
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.4.6/herokuish_0.4.6_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 Dockerfile.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.8.3
FROM golang:1.11.2

ENV DEBIAN_FRONTEND noninteractive

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.5
VERSION ?= 0.4.6
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.5/herokuish_0.4.5_linux_x86_64.tgz \
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.4.6/herokuish_0.4.6_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 @@
v94
v98
2 changes: 1 addition & 1 deletion buildpacks/buildpack-nodejs/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v130
v134
2 changes: 1 addition & 1 deletion buildpacks/buildpack-php/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v145
v148
2 changes: 1 addition & 1 deletion buildpacks/buildpack-python/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v144
v146
2 changes: 1 addition & 1 deletion buildpacks/buildpack-ruby/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v195
v197
2 changes: 1 addition & 1 deletion buildpacks/buildpack-scala/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v82
v83
2 changes: 1 addition & 1 deletion buildpacks/buildpack-static/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v9
v10

0 comments on commit 3629f84

Please sign in to comment.