From 880917b777b793a66e651f74d71614b1e086f90d Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 21 Sep 2024 08:04:04 -0400 Subject: [PATCH] Release 0.10.1 - #1298 @dokku-bot: Update php to version v256 - #1299 @dependabot: chore(deps-dev): bump heroku/heroku-buildpack-php from 255 to 256 in /buildpacks/buildpack-php/tests/php - #1301 @dokku-bot: Update ruby to version v279 - #1302 @dokku-bot: Update nodejs to version v264 - #1303 @dokku-bot: Update python to version v256 - #1306 @dokku-bot: Update go to version v197 - #1307 @dependabot: chore(deps): bump twig/twig from 3.11.0 to 3.11.1 in /buildpacks/buildpack-php/tests/php - #1308 @dependabot: chore(deps): bump express from 4.19.2 to 4.21.0 in /buildpacks/buildpack-multi/tests/multi - #1309 @dependabot: chore(deps): bump express from 4.19.2 to 4.21.0 in /buildpacks/buildpack-nodejs/tests/nodejs-express - #1310 @dokku-bot: Update static to version v26 - #1311 @dependabot: chore(deps): bump luizm/action-sh-checker from 0.8.0 to 0.9.0 - #1312 @dependabot: chore(deps): bump puma from 6.4.2 to 6.4.3 in /buildpacks/buildpack-ruby/tests/ruby-sinatra - #1313 @dokku-bot: Update nodejs to version v265 --- CHANGELOG.md | 16 ++++++++++++++++ Makefile | 2 +- README.md | 4 ++-- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84550a4f2..ab302f8d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ All notable changes to this project will be documented in this file. +## [0.10.1](https://github.com/gliderlabs/herokuish/compare/v0.10.0...v0.10.1) - 2024-09-21 + +- #1298 @dokku-bot: Update php to version v256 +- #1299 @dependabot: chore(deps-dev): bump heroku/heroku-buildpack-php from 255 to 256 in /buildpacks/buildpack-php/tests/php +- #1301 @dokku-bot: Update ruby to version v279 +- #1302 @dokku-bot: Update nodejs to version v264 +- #1303 @dokku-bot: Update python to version v256 +- #1306 @dokku-bot: Update go to version v197 +- #1307 @dependabot: chore(deps): bump twig/twig from 3.11.0 to 3.11.1 in /buildpacks/buildpack-php/tests/php +- #1308 @dependabot: chore(deps): bump express from 4.19.2 to 4.21.0 in /buildpacks/buildpack-multi/tests/multi +- #1309 @dependabot: chore(deps): bump express from 4.19.2 to 4.21.0 in /buildpacks/buildpack-nodejs/tests/nodejs-express +- #1310 @dokku-bot: Update static to version v26 +- #1311 @dependabot: chore(deps): bump luizm/action-sh-checker from 0.8.0 to 0.9.0 +- #1312 @dependabot: chore(deps): bump puma from 6.4.2 to 6.4.3 in /buildpacks/buildpack-ruby/tests/ruby-sinatra +- #1313 @dokku-bot: Update nodejs to version v265 + ## [0.10.0](https://github.com/gliderlabs/herokuish/compare/v0.9.2...v0.10.0) - 2024-08-24 - #1249 @dokku-bot: Update nodejs to version v255 diff --git a/Makefile b/Makefile index 94f11a2aa..f9712fdb3 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ REPOSITORY = herokuish DESCRIPTION = 'Herokuish uses Docker and Buildpacks to build applications like Heroku' HARDWARE = $(shell uname -m) SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]') -VERSION ?= 0.10.0 +VERSION ?= 0.10.1 IMAGE_NAME ?= $(NAME) BUILD_TAG ?= dev PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish diff --git a/README.md b/README.md index 9c18c69c7..247695261 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Build Status](https://github.com/gliderlabs/herokuish/workflows/CI/badge.svg)](https://github.com/gliderlabs/herokuish/actions?query=workflow%3ACI) [![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.10.0-blue)](https://hub.docker.com/r/gliderlabs/herokuish) +[![Docker Hub](https://img.shields.io/badge/docker%20hub-v0.10.1-blue)](https://hub.docker.com/r/gliderlabs/herokuish) A command line tool for emulating Heroku build and runtime tasks in containers. @@ -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: ```shell -RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.10.0/herokuish_0.10.0_linux_x86_64.tgz \ +RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.10.1/herokuish_0.10.1_linux_x86_64.tgz \ | tar -xzC /bin ```