diff --git a/README.rst b/README.rst index c68564f..8cbd2cc 100644 --- a/README.rst +++ b/README.rst @@ -109,6 +109,13 @@ APIs using Swagger show the Swagger-ui console ( default url /api/doc). What’s new? ----------- +Version 1.5.0 +~~~~~~~~~~~~~ + +- Add allow_cors option [pull-73](https://github.com/mrk-andreev/tornado-swagger/pull/73) Thanks to + [@MarkParker5](https://github.com/MarkParker5) + + Version 1.4.5 ~~~~~~~~~~~~~ diff --git a/setup.py b/setup.py index e9a6241..149221a 100644 --- a/setup.py +++ b/setup.py @@ -19,8 +19,6 @@ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/tornado_swagger/__init__.py b/tornado_swagger/__init__.py index 56dadec..5b60188 100644 --- a/tornado_swagger/__init__.py +++ b/tornado_swagger/__init__.py @@ -1 +1 @@ -__version__ = "1.4.5" +__version__ = "1.5.0"