Skip to content

Commit

Permalink
Update version to 1.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrax13 committed May 26, 2024
1 parent be2a741 commit 5293bfc
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN set -eux; \
Newer `gosu` releases:

```dockerfile
ENV GOSU_VERSION 1.17
ENV GOSU_VERSION 1.17.1
RUN set -eux; \
# save list of currently installed packages for later so we can clean up
savedAptMark="$(apt-mark showmanual)"; \
Expand Down Expand Up @@ -53,7 +53,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.17
ENV GOSU_VERSION 1.17.1
RUN set -eux; \
\
apk add --no-cache --virtual .gosu-deps \
Expand Down
2 changes: 1 addition & 1 deletion hub/Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:3.19

# https://github.com/cyrax13/gosu/releases
ENV GOSU_VERSION 1.17
ENV GOSU_VERSION 1.17.1

RUN set -eux; \
apk add --no-cache --virtual .fetch-deps dpkg gnupg; \
Expand Down
2 changes: 1 addition & 1 deletion hub/Dockerfile.debian
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM debian:bookworm-slim

# https://github.com/cyrax13/gosu/releases
ENV GOSU_VERSION 1.17
ENV GOSU_VERSION 1.17.1

RUN set -eux; \
savedAptMark="$(apt-mark showmanual)"; \
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func init() {
}

func version() string {
// 1.17 (go1.18.2 on linux/amd64; gc)
// 1.17.1 (go1.22.3 on linux/amd64; gc)
return Version + ` (` + runtime.Version() + ` on ` + runtime.GOOS + `/` + runtime.GOARCH + `; ` + runtime.Compiler + `)`
}

Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package main

const Version = "1.17"
const Version = "1.17.1"

0 comments on commit 5293bfc

Please sign in to comment.