From 1e44d1520330308a38ea79e57f48572382556ebe Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Thu, 28 Mar 2024 18:18:55 -0400 Subject: [PATCH] Release 0.8.0 - #1093 @dependabot: chore(deps): bump actions/download-artifact from 3 to 4 - #1173 @josegonzalez: Use find to identify only files not already owned by user - #1174 @josegonzalez: Add linting to CI - #1175 @josegonzalez: Ensure all file permissions are set to specified unprivileged user - #467 @mlandauer: Only copy from app import path to app path when building --- CHANGELOG.md | 8 ++++++++ Makefile | 2 +- README.md | 4 ++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f856fd6cf..9db71066c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [0.8.0](https://github.com/gliderlabs/herokuish/compare/v0.7.6...v0.8.0) - 2024-03-28 + +- #1093 @dependabot: chore(deps): bump actions/download-artifact from 3 to 4 +- #1173 @josegonzalez: Use find to identify only files not already owned by user +- #1174 @josegonzalez: Add linting to CI +- #1175 @josegonzalez: Ensure all file permissions are set to specified unprivileged user +- #467 @mlandauer: Only copy from app import path to app path when building + ## [0.7.6](https://github.com/gliderlabs/herokuish/compare/v0.7.5...v0.7.6) - 2024-03-28 - #1171 @josegonzalez: Use a run mount to add build dependencies diff --git a/Makefile b/Makefile index dc76b33a5..6cd461c82 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.7.6 +VERSION ?= 0.8.0 IMAGE_NAME ?= $(NAME) BUILD_TAG ?= dev PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish diff --git a/README.md b/README.md index f4e6b8e63..bd41b2cdd 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.7.6-blue)](https://hub.docker.com/r/gliderlabs/herokuish) +[![Docker Hub](https://img.shields.io/badge/docker%20hub-v0.8.0-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.7.6/herokuish_0.7.6_linux_x86_64.tgz \ +RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.8.0/herokuish_0.8.0_linux_x86_64.tgz \ | tar -xzC /bin ```