diff --git a/SECURITY.md b/SECURITY.md index 51513f46..82e70b9b 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -7,8 +7,8 @@ Please consider upgrading your version before reporting any potential vulnerabil | Version | Supported | |----------| ------------------ | -| 1.4.28 | :white_check_mark: | -| < 1.4.28 | :x: | +| 1.4.29 | :white_check_mark: | +| < 1.4.29 | :x: | ## Reporting a Vulnerability diff --git a/scripts/bump_version.sh b/scripts/bump_version.sh index e99934c3..57a18f45 100644 --- a/scripts/bump_version.sh +++ b/scripts/bump_version.sh @@ -6,7 +6,7 @@ BRANCH=$(git symbolic-ref HEAD 2>/dev/null) BRANCH=${BRANCH##refs/heads/} if python ./scripts/bump_version.py ${BRANCH} ; then - git add ./PyPDFForm/__init__.py mkdocs.yml + git add ./PyPDFForm/__init__.py mkdocs.yml SECURITY.md git commit -m "${BRANCH}: bump version" git push --set-upstream origin ${BRANCH} fi