Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ pre-commit hook

repos:
- repo: https://github.com/python-openapi/openapi-spec-validator
rev: 0.5.5 # The version to use or 'master' for latest
rev: 0.7.2 # The version to use or 'master' for latest
hooks:
- id: openapi-spec-validator

Expand Down
2 changes: 1 addition & 1 deletion docs/hook.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ A full .pre-commit-config.yaml example you can use in your repository:

repos:
- repo: https://github.com/python-openapi/openapi-spec-validator
rev: 0.5.5 # The version to use or 'master' for latest
rev: 0.7.2 # The version to use or 'master' for latest
hooks:
- id: openapi-spec-validator

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Usage

repos:
- repo: https://github.com/python-openapi/openapi-spec-validator
rev: 0.5.5 # The version to use or 'master' for latest
rev: 0.7.2 # The version to use or 'master' for latest
hooks:
- id: openapi-spec-validator

Expand Down
9 changes: 9 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,21 @@ regex = '''
(?P<prerelease>[a-z]+\d+)?
'''

[[tool.tbump.file]]
src = "docs/index.rst"

[[tool.tbump.file]]
src = "docs/hook.rst"

[[tool.tbump.file]]
src = "openapi_spec_validator/__init__.py"

[[tool.tbump.file]]
src = "Dockerfile"

[[tool.tbump.file]]
src = "README.rst"

[[tool.tbump.file]]
src = "pyproject.toml"
search = 'version = "{current_version}"'
Loading