Skip to content
This repository was archived by the owner on Apr 3, 2023. It is now read-only.

Commit 4971638

Browse files
committed
1.0.3
1 parent 058af5b commit 4971638

File tree

6 files changed

+66
-51
lines changed

6 files changed

+66
-51
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ repos:
2424
- id: black
2525
args: [--config=./pyproject.toml]
2626
- repo: https://github.com/codespell-project/codespell
27-
rev: v2.1.0
27+
rev: v2.2.1
2828
hooks:
2929
- id: codespell
3030
- repo: https://github.com/asottile/blacken-docs
3131
rev: v1.12.1
3232
hooks:
3333
- id: blacken-docs
3434
- repo: https://github.com/pre-commit/mirrors-prettier
35-
rev: "v2.7.1"
35+
rev: "v3.0.0-alpha.0"
3636
hooks:
3737
- id: prettier
3838
- repo: https://github.com/pycqa/bandit

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@
22

33
[v1.0.0]
44

5-
- initial release
5+
- initial release.
66

77
[v1.0.1]
88

9-
- update handling of `email` to allow `str`
9+
- update handling of `email` to allow `str`.
1010

1111
[v1.0.2]
1212

13-
- update typing of `email`
13+
- update typing of `email`.
14+
15+
[v1.0.3]
16+
17+
- update dependencies and docstrings.

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ In comparison to the original library this library has:
3232
5. updated export paths
3333
6. continuous maintenance
3434

35-
Use is mostly identical to upstream package.
35+
Usage is mostly identical to upstream package.
36+
37+
Checkout [the docs 📚](https://starlite-api.github.io/pydantic-openapi-schema/).
3638

3739
## Installation
3840

poetry.lock

Lines changed: 51 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pydantic-openapi-schema"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
description = "OpenAPI Schema using pydantic. Forked for Starlite-API from 'openapi-schema-pydantic'."
55
authors = ["Na'aman Hirschfeld <nhirschfeld@gmail.com>"]
66
maintainers = ["Na'aman Hirschfeld <nhirschfeld@gmail.com>", "Peter Schutt <peter.github@proton.me>", "Cody Fincher <cody.fincher@gmail.com>"]

tests/data/swagger_openapi_v3.0.1.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"openapi": "3.0.1",
33
"info": {
44
"title": "Swagger Petstore",
5-
"description": "This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.",
5+
"description": "This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.",
66
"termsOfService": "http://swagger.io/terms/",
77
"contact": {
88
"email": "apiteam@swagger.io"
@@ -186,7 +186,7 @@
186186
"get": {
187187
"tags": ["pet"],
188188
"summary": "Finds Pets by tags",
189-
"description": "Muliple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.",
189+
"description": "Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.",
190190
"operationId": "findPetsByTags",
191191
"parameters": [
192192
{

0 commit comments

Comments
 (0)