Skip to content

Commit

Permalink
Merge pull request #42 from zhenhua32/master
Browse files Browse the repository at this point in the history
Fixs static file + updates version
  • Loading branch information
maximdanilchenko authored Mar 7, 2019
2 parents cb69657 + 5c0eddb commit 2da645a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions aiohttp_apispec/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<head>
<meta charset="UTF-8">
<title>Swagger UI</title>
<link rel="stylesheet" type="text/css" href=".{{ static }}/swagger-ui.css" >
<link rel="icon" type="image/png" href=".{{ static }}/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href=".{{ static }}/favicon-16x16.png" sizes="16x16" />
<link rel="stylesheet" type="text/css" href="{{ static }}/swagger-ui.css" >
<link rel="icon" type="image/png" href="{{ static }}/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="{{ static }}/favicon-16x16.png" sizes="16x16" />
<style>
html
{
Expand All @@ -33,8 +33,8 @@
<body>
<div id="swagger-ui"></div>

<script src=".{{ static }}/swagger-ui-bundle.js"> </script>
<script src=".{{ static }}/swagger-ui-standalone-preset.js"> </script>
<script src="{{ static }}/swagger-ui-bundle.js"> </script>
<script src="{{ static }}/swagger-ui-standalone-preset.js"> </script>
<script>
window.onload = function() {
// Begin Swagger UI call region
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def read(file_name):

setup(
name='aiohttp-apispec',
version='1.1.0',
version='1.1.1',
description='Build and document REST APIs with aiohttp and apispec',
long_description=read('README.md'),
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 2da645a

Please sign in to comment.