From 54529816221a75b98dcad5b747db5d04c2d54099 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 15 Oct 2018 15:39:54 -0700 Subject: [PATCH] Bump version to 1.11 --- INSTALL.md | 4 ++-- version.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 29f88b5..e814d3c 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -18,7 +18,7 @@ RUN set -eux; \ Older Debian releases (or newer `gosu` releases): ```dockerfile -ENV GOSU_VERSION 1.10 +ENV GOSU_VERSION 1.11 RUN set -eux; \ # save list of currently installed packages for later so we can clean up savedAptMark="$(apt-mark showmanual)"; \ @@ -56,7 +56,7 @@ RUN set -eux; \ **Note:** when using Alpine, it's probably also worth checking out [`su-exec`](https://github.com/ncopa/su-exec) (`apk add --no-cache su-exec`) instead, which since version 0.2 is fully `gosu`-compatible in a fraction of the file size. ```dockerfile -ENV GOSU_VERSION 1.10 +ENV GOSU_VERSION 1.11 RUN set -eux; \ \ apk add --no-cache --virtual .gosu-deps \ diff --git a/version.go b/version.go index 54c3f83..a257129 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package main -const Version = "1.10" +const Version = "1.11"