Skip to content

Commit 6303384

Browse files
authored
redis 7.2.5 (#121)
1 parent 7119475 commit 6303384

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/redis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
uses: ./.github/workflows/release.yml
4848
with:
4949
workflow: ${{ github.workflow }}
50-
tool_version: '7.2.4'
50+
tool_version: '7.2.5'
5151
prepare_body: |
5252
bsdtar -Oxf ./build-musl/build-musl.tar.gz build-musl.md >> body.md
5353
bsdtar -Oxf ./build-msys2/build-msys2.tar.gz build-msys2.md >> body.md

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
| [![GitHub release (by tag)](https://img.shields.io/github/downloads/hemnstill/StandaloneTools/zstd-1.5.6/total?label=⭳%20zstd-1.5.6)](https://github.com/hemnstill/StandaloneTools/releases/tag/zstd-1.5.6) | [![GitHub Repo stars](https://img.shields.io/github/stars/facebook/zstd?style=social&label=zstd)](https://github.com/facebook/zstd) [![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/facebook/zstd)](https://github.com/facebook/zstd/releases/latest) |
1212
| [![GitHub release (by tag)](https://img.shields.io/github/downloads/hemnstill/StandaloneTools/pg_dump-15.1/total?label=⭳%20pg_dump-15.1)](https://github.com/hemnstill/StandaloneTools/releases/tag/pg_dump-15.1) | [![GitHub Repo stars](https://img.shields.io/github/stars/postgres/postgres?style=social&label=postgres)](https://github.com/postgres/postgres) [![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/postgres/postgres)](https://www.postgresql.org/docs/current/index.html) |
1313
| [![GitHub release (by tag)](https://img.shields.io/github/downloads/hemnstill/StandaloneTools/mysql-8.4.0/total?label=⭳%20mysql-8.4.0)](https://github.com/hemnstill/StandaloneTools/releases/tag/mysql-8.4.0) | [![GitHub Repo stars](https://img.shields.io/github/stars/mysql/mysql-server?style=social&label=mysql-server)](https://github.com/mysql/mysql-server) [![latest packaged version(s)](https://repology.org/badge/latest-versions/mysql.svg)](https://repology.org/project/mysql/information) |
14-
| [![GitHub release (by tag)](https://img.shields.io/github/downloads/hemnstill/StandaloneTools/redis-7.2.4/total?label=⭳%20redis-7.2.4)](https://github.com/hemnstill/StandaloneTools/releases/tag/redis-7.2.4) | [![GitHub Repo stars](https://img.shields.io/github/stars/redis/redis?style=social&label=redis)](https://github.com/redis/redis) [![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/redis/redis)](https://redis.io/download/) |
14+
| [![GitHub release (by tag)](https://img.shields.io/github/downloads/hemnstill/StandaloneTools/redis-7.2.5/total?label=⭳%20redis-7.2.5)](https://github.com/hemnstill/StandaloneTools/releases/tag/redis-7.2.5) | [![GitHub Repo stars](https://img.shields.io/github/stars/redis/redis?style=social&label=redis)](https://github.com/redis/redis) [![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/redis/redis)](https://redis.io/download/) |
1515
| [![GitHub release (by tag)](https://img.shields.io/github/downloads/hemnstill/StandaloneTools/busybox-1.37.0-FRP-5398/total?label=⭳%20busybox-1.37.0-FRP-5398)](https://github.com/hemnstill/StandaloneTools/releases/tag/busybox-1.37.0-FRP-5398) | [![GitHub Repo stars](https://img.shields.io/github/stars/rmyorston/busybox-w32?style=social&label=busybox-w32)](https://github.com/rmyorston/busybox-w32) [![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/rmyorston/busybox-w32)](https://frippery.org/busybox/release-notes/current.html) [![latest packaged version(s)](https://repology.org/badge/latest-versions/busybox.svg)](https://repology.org/project/busybox/information) |
1616
| [![GitHub release (by tag)](https://img.shields.io/github/downloads/hemnstill/StandaloneTools/far2l-2.6.3/total?label=⭳%20far2l-2.6.3)](https://github.com/hemnstill/StandaloneTools/releases/tag/far2l-2.6.3) | [![GitHub Repo stars](https://img.shields.io/github/stars/elfmz/far2l?style=social&label=far2l)](https://github.com/elfmz/far2l) [![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/elfmz/far2l)](https://github.com/elfmz/far2l/releases/latest) |
1717
| [![GitHub release (by tag)](https://img.shields.io/github/downloads/hemnstill/StandaloneTools/pcre2grep-10.44/total?label=⭳%20pcre2grep-10.44)](https://github.com/hemnstill/StandaloneTools/releases/tag/pcre2grep-10.44) | [![GitHub Repo stars](https://img.shields.io/github/stars/PCRE2Project/pcre2?style=social&label=PCRE2)](https://github.com/PCRE2Project/pcre2) [![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/PCRE2Project/pcre2)](https://github.com/PCRE2Project/pcre2/releases/latest) |

redis/build_msys2.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ dp0="$(realpath "$(dirname "$0")")"
33
set -e
44

55
tool_name="redis"
6-
tool_version="7.2.4"
6+
tool_version="7.2.5"
77
self_toolset_name="build-msys2"
88
release_version_dirpath="$dp0/release/build"
99

redis/build_musl.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ apk add --no-cache alpine-sdk make linux-headers
1010
echo "::endgroup::"
1111

1212
tool_name="redis"
13-
tool_version="7.2.4"
13+
tool_version="7.2.5"
1414
self_toolset_name="build-musl"
1515
release_version_dirpath="$dp0/release/build"
1616

redis/test_linux.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/bin/bash
22

33
testVersion() {
4-
assertEquals "redis-cli 7.2.4" "$(../bin/redis-cli --version | head -c 15)"
4+
assertEquals "redis-cli 7.2.5" "$(../bin/redis-cli --version | head -c 15)"
55
}
66

77
testServerVersion() {
8-
assertEquals "Redis server v=7.2.4" "$(../bin/redis-server --version | head -c 20)"
8+
assertEquals "Redis server v=7.2.5" "$(../bin/redis-server --version | head -c 20)"
99
}
1010

1111
# Load and run shUnit2.

redis/test_windows.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/bin/bash
22

33
testVersion() {
4-
assertEquals "redis-cli 7.2.4" "$(../bin/redis-cli.exe --version | head -c 15)"
4+
assertEquals "redis-cli 7.2.5" "$(../bin/redis-cli.exe --version | head -c 15)"
55
}
66

77
testServerVersion() {
8-
assertEquals "Redis server v=7.2.4" "$(../bin/redis-server.exe --version | head -c 20)"
8+
assertEquals "Redis server v=7.2.5" "$(../bin/redis-server.exe --version | head -c 20)"
99
}
1010

1111
# Load and run shUnit2.

0 commit comments

Comments
 (0)