diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7daff9c..a3e902e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -125,6 +125,6 @@ repos: - id: "forbid-new-submodules" - id: "trailing-whitespace" - repo: "https://github.com/Anadea/pre-commit-config-shellcheck" - rev: "0.3.1" + rev: "0.3.2" hooks: - id: "pre-commit-config-shellcheck" diff --git a/README.rst b/README.rst index 7df0845..9dd5b31 100644 --- a/README.rst +++ b/README.rst @@ -52,7 +52,7 @@ Also, it can be used as a `pre-commit `_ hook out of th .. code-block:: yaml - repo: "https://github.com/Anadea/pre-commit-config-shellcheck" - rev: "0.3.1" + rev: "0.3.2" hooks: - id: "pre-commit-config-shellcheck" @@ -63,7 +63,7 @@ Also, it can be used as a `GitHub action ` .. code-block:: yaml - name: "pre-commit-config-shellcheck" - uses: "Anadea/pre-commit-config-shellcheck@0.3.1" + uses: "Anadea/pre-commit-config-shellcheck@0.3.2" id: "pre-commit-config-shellcheck" with: config: ".pre-commit-config.yaml" diff --git a/action.yaml b/action.yaml index a5ed0a0..bc4f7a8 100644 --- a/action.yaml +++ b/action.yaml @@ -27,7 +27,7 @@ runs: id: "install-pre-commit-config-shellcheck" env: VIRTUAL_ENV: "/opt/.env" - PRE_COMMIT_CONFIG_SHELLCHECK_VERSION: "0.3.1" + PRE_COMMIT_CONFIG_SHELLCHECK_VERSION: "0.3.2" shell: "bash" run: | set -eau pipefail; \ diff --git a/pre_commit_config_shellcheck.py b/pre_commit_config_shellcheck.py index ea7a6f7..42997e1 100755 --- a/pre_commit_config_shellcheck.py +++ b/pre_commit_config_shellcheck.py @@ -17,7 +17,7 @@ # metadata -VERSION = (0, 3, 1) +VERSION = (0, 3, 2) __version__ = ".".join(map(str, VERSION)) diff --git a/setup.cfg b/setup.cfg index e9ffe68..18b9306 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = pre-commit-config-shellcheck -version = 0.3.1 +version = 0.3.2 description = Tool for checking entry points in the pre-commit config with ShellCheck. python_requires >= 3.7 license_file = MIT-LICENSE