Skip to content

Commit a093f9c

Browse files
committed
Version 0.8.3
1 parent 0d757b5 commit a093f9c

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG OPENAPI_SPEC_VALIDATOR_VERSION=0.8.2
1+
ARG OPENAPI_SPEC_VALIDATOR_VERSION=0.8.3
22

33
FROM python:3.14.3-alpine as builder
44

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ pre-commit hook
8686
8787
repos:
8888
- repo: https://github.com/python-openapi/openapi-spec-validator
89-
rev: 0.8.2 # The version to use or 'master' for latest
89+
rev: 0.8.3 # The version to use or 'master' for latest
9090
hooks:
9191
- id: openapi-spec-validator
9292

docs/hook.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ A full .pre-commit-config.yaml example you can use in your repository:
1616
1717
repos:
1818
- repo: https://github.com/python-openapi/openapi-spec-validator
19-
rev: 0.8.2 # The version to use or 'master' for latest
19+
rev: 0.8.3 # The version to use or 'master' for latest
2020
hooks:
2121
- id: openapi-spec-validator
2222

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Usage
8282
8383
repos:
8484
- repo: https://github.com/python-openapi/openapi-spec-validator
85-
rev: 0.8.2 # The version to use or 'master' for latest
85+
rev: 0.8.3 # The version to use or 'master' for latest
8686
hooks:
8787
- id: openapi-spec-validator
8888

openapi_spec_validator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
__author__ = "Artur Maciag"
1919
__email__ = "maciag.artur@gmail.com"
20-
__version__ = "0.8.2"
20+
__version__ = "0.8.3"
2121
__url__ = "https://github.com/python-openapi/openapi-spec-validator"
2222
__license__ = "Apache License, Version 2.0"
2323

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "openapi-spec-validator"
3-
version = "0.8.2"
3+
version = "0.8.3"
44
description = "OpenAPI 2.0 (aka Swagger) and OpenAPI 3 spec validator"
55
authors = [
66
{ name = "Artur Maciag", email = "maciag.artur@gmail.com" },
@@ -120,7 +120,7 @@ message_template = "Version {new_version}"
120120
tag_template = "{new_version}"
121121

122122
[tool.tbump.version]
123-
current = "0.8.2"
123+
current = "0.8.3"
124124
regex = '''
125125
(?P<major>\d+)
126126
\.

0 commit comments

Comments
 (0)