Skip to content

Commit 49109f7

Browse files
committed
Version 0.8.0b1
1 parent 2d0e968 commit 49109f7

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.7.2
1+
ARG OPENAPI_SPEC_VALIDATOR_VERSION=0.8.0b1
22

33
FROM python:3.13.4-alpine as builder
44

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ pre-commit hook
8787
8888
repos:
8989
- repo: https://github.com/python-openapi/openapi-spec-validator
90-
rev: 0.7.2 # The version to use or 'master' for latest
90+
rev: 0.8.0b1 # The version to use or 'master' for latest
9191
hooks:
9292
- id: openapi-spec-validator
9393

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.7.2 # The version to use or 'master' for latest
19+
rev: 0.8.0b1 # 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
@@ -77,7 +77,7 @@ Usage
7777
7878
repos:
7979
- repo: https://github.com/python-openapi/openapi-spec-validator
80-
rev: 0.7.2 # The version to use or 'master' for latest
80+
rev: 0.8.0b1 # The version to use or 'master' for latest
8181
hooks:
8282
- id: openapi-spec-validator
8383

openapi_spec_validator/__init__.py

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

1515
__author__ = "Artur Maciag"
1616
__email__ = "[email protected]"
17-
__version__ = "0.7.2"
17+
__version__ = "0.8.0b1"
1818
__url__ = "https://github.com/python-openapi/openapi-spec-validator"
1919
__license__ = "Apache License, Version 2.0"
2020

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ ignore_missing_imports = true
2727

2828
[tool.poetry]
2929
name = "openapi-spec-validator"
30-
version = "0.7.2"
30+
version = "0.8.0b1"
3131
description = "OpenAPI 2.0 (aka Swagger) and OpenAPI 3 spec validator"
3232
authors = ["Artur Maciag <[email protected]>"]
3333
license = "Apache-2.0"
@@ -113,7 +113,7 @@ message_template = "Version {new_version}"
113113
tag_template = "{new_version}"
114114

115115
[tool.tbump.version]
116-
current = "0.7.2"
116+
current = "0.8.0b1"
117117
regex = '''
118118
(?P<major>\d+)
119119
\.

0 commit comments

Comments
 (0)