From 949f3185c4cc08488bcd4ab8c8836d915bf57048 Mon Sep 17 00:00:00 2001 From: Simon Wisselink Date: Tue, 8 Aug 2023 00:08:13 +0200 Subject: [PATCH] Prepare meta files for pre-release of v5 --- SECURITY.md | 6 +++--- make-release.sh | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index 80b5ef5c..9685c254 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -2,13 +2,13 @@ ## Supported Versions -Smarty currently supports the latest minor version of Smarty 3 and Smarty 4. +Smarty currently supports the latest minor version of Smarty 4 and Smarty 5. | Version | Supported | |---------|--------------------| +| 5.0.x | :white_check_mark: | | 4.3.x | :white_check_mark: | -| 3.1.x | :white_check_mark: | -| < 3.1 | :x: | +| < 4.3 | :x: | ## Reporting a Vulnerability diff --git a/make-release.sh b/make-release.sh index 6a652d51..7c6858d0 100755 --- a/make-release.sh +++ b/make-release.sh @@ -1,9 +1,9 @@ #!/bin/bash -if [[ "$1" =~ ^4\.[0-9\.-rc]+$ ]]; then +if [[ "$1" =~ ^5\.[0-9\.-rc]+$ ]]; then printf 'Creating release %s\n' "$1" else - echo "Invalid version number: $1. This script can only make v4.x.x releases." + echo "Invalid version number: $1. This script can only make v5.x.x releases." exit 1; fi