Skip to content

Commit

Permalink
Merge pull request #616 from gliderlabs/master
Browse files Browse the repository at this point in the history
Release 0.5.19
  • Loading branch information
josegonzalez authored Nov 8, 2020
2 parents b82ddc1 + b289554 commit c11dfc9
Show file tree
Hide file tree
Showing 13 changed files with 24 additions and 14 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Change Log
All notable changes to this project will be documented in this file.

## [0.5.19](https://github.com/gliderlabs/herokuish/compare/v0.5.18...v0.5.19) - 2020-11-08
### Changed
- @josegonzalez Update clojure to version v86 #608
- @josegonzalez Update go to version v148 #609
- @josegonzalez Update gradle to version v32 #610
- @josegonzalez Update nodejs to version v176 #604
- @josegonzalez Update php to version v182 #612
- @josegonzalez Update python to version v184 #613
- @josegonzalez Update ruby to version v222 #614
- @josegonzalez Update scala to version v88 #615

## [0.5.18](https://github.com/gliderlabs/herokuish/compare/v0.5.17...v0.5.18) - 2020-08-29
### Fixed
- @josegonzalez Release to the correct packagecloud repository
Expand Down Expand Up @@ -660,4 +671,3 @@ All notable changes to this project will be documented in this file.
- Updated to latest buildpack releases
- User for `buildpack-build` is `$USER` or randomized
- User for `procfile-exec` is `$USER` or detected from `/app`

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN apt-get update -qq \
&& mv /etc/ImageMagick-6/policy.xml.custom /etc/ImageMagick-6/policy.xml \
&& 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.5.18/herokuish_0.5.18_linux_x86_64.tgz" \
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.5.19/herokuish_0.5.19_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,7 +1,7 @@
NAME = herokuish
DESCRIPTION = 'Herokuish uses Docker and Buildpacks to build applications like Heroku'
HARDWARE = $(shell uname -m)
VERSION ?= 0.5.18
VERSION ?= 0.5.19
IMAGE_NAME ?= $(NAME)
BUILD_TAG ?= dev
PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Circle CI](https://circleci.com/gh/gliderlabs/herokuish.png?style=shield)](https://circleci.com/gh/gliderlabs/herokuish)
[![IRC Channel](https://img.shields.io/badge/irc-%23gliderlabs-blue.svg)](https://kiwiirc.com/client/irc.freenode.net/#gliderlabs)
[![Docker Hub](https://img.shields.io/badge/docker%20hub-v0.5.18-blue)](https://hub.docker.com/r/gliderlabs/herokuish)
[![Docker Hub](https://img.shields.io/badge/docker%20hub-v0.5.19-blue)](https://hub.docker.com/r/gliderlabs/herokuish)

A command line tool for emulating Heroku build and runtime tasks in containers.

Expand All @@ -19,7 +19,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.5.18/herokuish_0.5.18_linux_x86_64.tgz \
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.5.19/herokuish_0.5.19_linux_x86_64.tgz \
| tar -xzC /bin
```

Expand Down
2 changes: 1 addition & 1 deletion buildpacks/buildpack-clojure/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v85
v86
2 changes: 1 addition & 1 deletion buildpacks/buildpack-go/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v145
v148
2 changes: 1 addition & 1 deletion buildpacks/buildpack-gradle/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v31
v32
2 changes: 1 addition & 1 deletion buildpacks/buildpack-java/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v66
v67
2 changes: 1 addition & 1 deletion buildpacks/buildpack-nodejs/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v175
v176
2 changes: 1 addition & 1 deletion buildpacks/buildpack-php/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v179
v182
2 changes: 1 addition & 1 deletion buildpacks/buildpack-python/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v177
v184
2 changes: 1 addition & 1 deletion buildpacks/buildpack-ruby/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v218
v222
2 changes: 1 addition & 1 deletion buildpacks/buildpack-scala/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v87
v88

0 comments on commit c11dfc9

Please sign in to comment.