Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 7.2 release #374

Merged
merged 1 commit into from
Aug 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions 7.2-rc/Dockerfile → 7.2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ RUN set -eux; \
gosu --version; \
gosu nobody true

ENV REDIS_VERSION 7.2-rc3
ENV REDIS_DOWNLOAD_URL https://github.com/redis/redis/archive/7.2-rc3.tar.gz
ENV REDIS_DOWNLOAD_SHA d4e116a7c968442523c00c20c65bc541ae8974964f340dbe07993e39e3fd48ef
ENV REDIS_VERSION 7.2.0
ENV REDIS_DOWNLOAD_URL http://download.redis.io/releases/redis-7.2.0.tar.gz
ENV REDIS_DOWNLOAD_SHA 8b12e242647635b419a0e1833eda02b65bf64e39eb9e509d9db4888fb3124943

RUN set -eux; \
\
Expand Down
6 changes: 3 additions & 3 deletions 7.2-rc/alpine/Dockerfile → 7.2/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ RUN apk add --no-cache \
# add tzdata for https://github.com/docker-library/redis/issues/138
tzdata

ENV REDIS_VERSION 7.2-rc3
ENV REDIS_DOWNLOAD_URL https://github.com/redis/redis/archive/7.2-rc3.tar.gz
ENV REDIS_DOWNLOAD_SHA d4e116a7c968442523c00c20c65bc541ae8974964f340dbe07993e39e3fd48ef
ENV REDIS_VERSION 7.2.0
ENV REDIS_DOWNLOAD_URL http://download.redis.io/releases/redis-7.2.0.tar.gz
ENV REDIS_DOWNLOAD_SHA 8b12e242647635b419a0e1833eda02b65bf64e39eb9e509d9db4888fb3124943

RUN set -eux; \
\
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion generate-stackbrew-library.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -eu

declare -A aliases=(
[7.0]='7 latest'
[7.2]='7 latest'
[6.2]='6'
)

Expand Down