Skip to content

Commit 4636fee

Browse files
committed
chore: test 5.0.2
1 parent 68523e8 commit 4636fee

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#### Prowler release version ####
2-
NEXT_PUBLIC_PROWLER_RELEASE_VERSION=v5.0.0
2+
NEXT_PUBLIC_PROWLER_RELEASE_VERSION=v5.0.2

.github/workflows/sdk-bump-version.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,20 @@ jobs:
2828
if (( MAJOR_VERSION == 5 )); then
2929
if (( FIX_VERSION == 0 )); then
3030
echo "Minor Release: $PROWLER_VERSION"
31+
32+
BUMP_VERSION_TO=${MAJOR_VERSION}.$((MINOR_VERSION + 1)).${FIX_VERSION}"
33+
echo "${BUMP_VERSION_TO}"
34+
35+
echo "BUMP_VERSION_TO=${BUMP_VERSION_TO}" >> ${GITHUB_ENV}
3136
echo "TARGET_BRANCH=master" >> ${GITHUB_ENV}
32-
echo "BUMP_VERSION_TO=${MAJOR_VERSION}.$((MINOR_VERSION + 1)).${FIX_VERSION}" >> ${GITHUB_ENV}
3337
else
34-
echo "Fix/Bug Release: $PROWLER_VERSION"
38+
echo "Patch Release: $PROWLER_VERSION"
39+
40+
BUMP_VERSION_TO=${MAJOR_VERSION}.$((MINOR_VERSION + 1)).${FIX_VERSION}"
41+
echo "Bumping to next patch version: ${BUMP_VERSION_TO}"
42+
3543
echo "TARGET_BRANCH=v${MAJOR_VERSION}.${MINOR_VERSION}" >> ${GITHUB_ENV}
36-
echo "BUMP_VERSION_TO=${MAJOR_VERSION}.${MINOR_VERSION}.$((FIX_VERSION + 1))" >> ${GITHUB_ENV}
44+
echo "BUMP_VERSION_TO=${BUMP_VERSION_TO}" >> ${GITHUB_ENV}
3745
fi
3846
else
3947
echo "Releasing another Prowler major version, aborting..."

prowler/config/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
timestamp = datetime.today()
1414
timestamp_utc = datetime.now(timezone.utc).replace(tzinfo=timezone.utc)
15-
prowler_version = "5.0.0"
15+
prowler_version = "5.0.2"
1616
html_logo_url = "https://github.com/prowler-cloud/prowler/"
1717
square_logo_img = "https://prowler.com/wp-content/uploads/logo-html.png"
1818
aws_logo = "https://user-images.githubusercontent.com/38561120/235953920-3e3fba08-0795-41dc-b480-9bea57db9f2e.png"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ maintainers = [{name = "Prowler Engineering", email = "engineering@prowler.com"}
6464
name = "prowler"
6565
readme = "README.md"
6666
requires-python = ">3.9.1,<3.13"
67-
version = "5.0.0"
67+
version = "5.0.2"
6868

6969
[project.scripts]
7070
prowler = "prowler.__main__:prowler"

0 commit comments

Comments
 (0)