Skip to content

Commit 71d9910

Browse files
committed
Release v0.5.33
### Changed - @josegonzalez Update ruby to version v232 gliderlabs#725 - @josegonzalez Update python to version v204 gliderlabs#727 - @josegonzalez Update php to version v201 gliderlabs#728 - @josegonzalez Update go to version v157 gliderlabs#729
1 parent b983d1a commit 71d9910

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,13 @@ jobs:
4040
- run: |
4141
echo "$DOCKERHUB_PASSWORD" | docker login --username "$DOCKERHUB_USERNAME" --password-stdin
4242
- run: |
43-
docker image build -t $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:$CIRCLE_TAG-18 -t $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:latest-18 --build-arg STACK_VERSION=18 .
43+
docker image build -t $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:$CIRCLE_TAG-18 -t $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:latest-18 -t $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:latest --build-arg STACK_VERSION=18 .
4444
- run: |
4545
docker image build -t $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:$CIRCLE_TAG-20 -t $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:latest-20 --build-arg STACK_VERSION=20 .
4646
- run: |
4747
docker image push $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:$CIRCLE_TAG-18
4848
docker image push $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:latest-18
49+
docker image push $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:latest
4950
- run: |
5051
docker image push $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:$CIRCLE_TAG-20
5152
docker image push $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME:latest-20

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [0.5.33](https://github.com/gliderlabs/herokuish/compare/v0.5.32...v0.5.33) - 2021-12-01
5+
6+
### Changed
7+
8+
- @josegonzalez Update ruby to version v232 #725
9+
- @josegonzalez Update python to version v204 #727
10+
- @josegonzalez Update php to version v201 #728
11+
- @josegonzalez Update go to version v157 #729
12+
413
## [0.5.32](https://github.com/gliderlabs/herokuish/compare/v0.5.31...v0.5.32) - 2021-11-06
514

615
### Changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ RUN apt-get update -qq \
1717
&& mv /etc/ImageMagick-6/policy.xml.custom /etc/ImageMagick-6/policy.xml \
1818
&& apt-get clean \
1919
&& rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/* /var/tmp/*
20-
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.5.32/herokuish_0.5.32_linux_x86_64.tgz" \
20+
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.5.33/herokuish_0.5.33_linux_x86_64.tgz" \
2121
--silent -L | tar -xzC /bin
2222
RUN /bin/herokuish buildpack install \
2323
&& ln -s /bin/herokuish /build \

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ NAME = herokuish
22
DESCRIPTION = 'Herokuish uses Docker and Buildpacks to build applications like Heroku'
33
HARDWARE = $(shell uname -m)
44
SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]')
5-
VERSION ?= 0.5.32
5+
VERSION ?= 0.5.33
66
IMAGE_NAME ?= $(NAME)
77
BUILD_TAG ?= dev
88
PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Build Status](https://github.com/gliderlabs/herokuish/workflows/CI/badge.svg)](https://github.com/gliderlabs/herokuish/actions?query=workflow%3ACI)
44
[![IRC Channel](https://img.shields.io/badge/irc-%23gliderlabs-blue.svg)](https://kiwiirc.com/client/irc.freenode.net/#gliderlabs)
5-
[![Docker Hub](https://img.shields.io/badge/docker%20hub-v0.5.32-blue)](https://hub.docker.com/r/gliderlabs/herokuish)
5+
[![Docker Hub](https://img.shields.io/badge/docker%20hub-v0.5.33-blue)](https://hub.docker.com/r/gliderlabs/herokuish)
66

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

@@ -19,7 +19,7 @@ Download and uncompress the latest binary tarball from [releases](https://github
1919
For example, you can do this directly in your Dockerfiles installing into `/bin` as one step:
2020

2121
```shell
22-
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.5.32/herokuish_0.5.32_linux_x86_64.tgz \
22+
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.5.33/herokuish_0.5.33_linux_x86_64.tgz \
2323
| tar -xzC /bin
2424
```
2525

0 commit comments

Comments
 (0)