Skip to content

Commit

Permalink
Update swagger-ui-dist to 5.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
blueswen committed Nov 18, 2023
1 parent 2bfb9de commit 4411d1b
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 27 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
mkdocs-swagger-ui-tag 0.6.7 (2023-11-18)

* Updated swagger-ui-dist to 5.10.0

mkdocs-swagger-ui-tag 0.6.6 (2023-10-25)

* Updated swagger-ui-dist to 5.9.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ A MkDocs plugin supports for add [Swagger UI](https://github.com/swagger-api/swa
1. Python Package
1. beautifulsoup4>=4.11.1
2. [Swagger UI dist](https://www.npmjs.com/package/swagger-ui-dist) javascript file and css file
1. swagger-ui-dist==5.9.1
1. swagger-ui-dist==5.10.0

## Usage

Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

46 changes: 24 additions & 22 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
from setuptools import setup, find_packages
from setuptools import find_packages, setup

with open("README.md", encoding="utf-8") as f:
long_description = f.read()

setup(name="mkdocs-swagger-ui-tag",
version="0.6.6",
author="Blueswen",
author_email="blueswen.tw@gmail.com",
url="https://blueswen.github.io/mkdocs-swagger-ui-tag",
project_urls={
"Source": "https://github.com/Blueswen/mkdocs-swagger-ui-tag",
},
keywords=["mkdocs", "plugin", "swagger-ui", "openapi"],
packages=find_packages(),
license="MIT",
description="A MkDocs plugin supports for add Swagger UI in page.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["beautifulsoup4>=4.11.1"],
include_package_data=True,
entry_points={
"mkdocs.plugins": [
"swagger-ui-tag = mkdocs_swagger_ui_tag.plugin:SwaggerUIPlugin",
]
})
setup(
name="mkdocs-swagger-ui-tag",
version="0.6.7",
author="Blueswen",
author_email="blueswen.tw@gmail.com",
url="https://blueswen.github.io/mkdocs-swagger-ui-tag",
project_urls={
"Source": "https://github.com/Blueswen/mkdocs-swagger-ui-tag",
},
keywords=["mkdocs", "plugin", "swagger-ui", "openapi"],
packages=find_packages(),
license="MIT",
description="A MkDocs plugin supports for add Swagger UI in page.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["beautifulsoup4>=4.11.1"],
include_package_data=True,
entry_points={
"mkdocs.plugins": [
"swagger-ui-tag = mkdocs_swagger_ui_tag.plugin:SwaggerUIPlugin",
]
},
)

0 comments on commit 4411d1b

Please sign in to comment.