From: Chris Lamb <lamby@debian.org>
Date: Mon, 14 Jul 2025 09:37:07 -0700
Subject: Add "Redis ver. $REDIS_VERSION" to LOLWUT 8 output as a some
 testsuites were relying on it.

eg. python-redis (https://github.com/redis/redis-py/blob/master/tests/test_commands.py#L1092)

Forwarded: https://github.com/redis/redis/pull/14195
---
 src/lolwut8.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/lolwut8.c b/src/lolwut8.c
index 1be150e..363a30e 100644
--- a/src/lolwut8.c
+++ b/src/lolwut8.c
@@ -170,7 +170,9 @@ void lolwut8Command(client *c) {
         "\nIn 1961, Nanni Balestrini created one of the first computer-generated poems, TAPE MARK I, using an IBM 7090 mainframe. Each execution combined verses from three literary sources following algorithmic rules based on metrical compatibility and group constraints. This LOLWUT command reproduces Balestrini's original algorithm, generating new stanzas through the same computational poetry process described in Almanacco Letterario Bompiani, 1962.\n\n"
         "https://en.wikipedia.org/wiki/Digital_poetry\n"
         "https://www.youtube.com/watch?v=8i7uFCK7G0o (English subs)\n\n"
-        "Use: LOLWUT IT for the original Italian output.\n\n");
+        "Use: LOLWUT IT for the original Italian output. Redis ver. ");
+    combined = sdscat(combined,REDIS_VERSION);
+    combined = sdscat(combined,"\n\n");
 
     addReplyVerbatim(c,combined,sdslen(combined),"txt");
     sdsfree(combined);
