Skip to content

Commit

Permalink
Merge branch 'master' into proxy-headers
Browse files Browse the repository at this point in the history
  • Loading branch information
nhairs committed Jan 29, 2024
2 parents 28cf1ba + f39933c commit 8d25920
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.27.0.post1 - 2024-01-29

### Fixed

- Fix nav overrides for newer version of Mkdocs Material (#2233) 26/01/24

## 0.27.0 - 2024-01-20

### Added
Expand Down
7 changes: 4 additions & 3 deletions docs/overrides/partials/nav.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{% import "partials/nav-item.html" as item with context %}

<!-- Determine class according to configuration -->
{% set class = "md-nav md-nav--primary" %}
{% if "navigation.tabs" in features %}
Expand Down Expand Up @@ -35,12 +37,11 @@
</div>
{% endif %}

<!-- Render item list -->
<!-- Navigation list -->
<ul class="md-nav__list" data-md-scrollfix>
{% for nav_item in nav %}
{% set path = "__nav_" ~ loop.index %}
{% set level = 1 %}
{% include "partials/nav-item.html" %}
{{ item.render(nav_item, path, 1) }}
{% endfor %}
</ul>

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ watchgod==0.8.2

# Documentation
mkdocs==1.5.3
mkdocs-material==9.5.3
mkdocs-material==9.5.5
2 changes: 1 addition & 1 deletion uvicorn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from uvicorn.config import Config
from uvicorn.main import Server, main, run

__version__ = "0.27.0"
__version__ = "0.27.0.post1"
__all__ = ["main", "run", "Config", "Server"]

0 comments on commit 8d25920

Please sign in to comment.