diff --git a/PyPDFForm/__init__.py b/PyPDFForm/__init__.py index 9bfd7d6f..28120842 100644 --- a/PyPDFForm/__init__.py +++ b/PyPDFForm/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- """Contains any object users might need.""" -__version__ = "1.4.28" +__version__ = "1.4.29" from .wrapper import FormWrapper, PdfWrapper 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/mkdocs.yml b/mkdocs.yml index fba336fa..6b7cd2f8 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -22,4 +22,4 @@ theme: name: readthedocs logo: img/logo.png extra: - version: v1.4.28 + version: v1.4.29 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