Skip to content

Commit

Permalink
Version up
Browse files Browse the repository at this point in the history
  • Loading branch information
vint21h committed Aug 2, 2022
1 parent eed07f2 commit 2d74637
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Also, it can be used as a `pre-commit <https://pre-commit.com/>`_ 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"
Expand All @@ -63,7 +63,7 @@ Also, it can be used as a `GitHub action <https://github.com/features/actions/>`
.. 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"
Expand Down
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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; \
Expand Down
2 changes: 1 addition & 1 deletion pre_commit_config_shellcheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


# metadata
VERSION = (0, 3, 1)
VERSION = (0, 3, 2)
__version__ = ".".join(map(str, VERSION))


Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 2d74637

Please sign in to comment.