Skip to content

Commit

Permalink
Release 1.1 (#578)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Jun 30, 2023
1 parent c290565 commit 3ad02ba
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
.. towncrier release notes start

1.1 (2023-06-30)
================

* Display a list of available files in the static handler when serving a 404 error.
* Add ``no-cache`` headers to disable browser caching (can be disabled with ``--browser-cache``).
* Improved reliability of live reload by waiting up to 15 seconds (previously 2) for the app to restart and allowing the browser to reconnect when multiple files change quickly.
* Fixed unclean shutdowns on Windows by introducing a shutdown by endpoint method (Windows doesn't work with the default signals method).
* Changed to run with ``asyncio.Runner`` on Python 3.11+ (apparently fixing an issue with reloads on Windows).
* Rewrote the package name dynamically to match the app's name (e.g. used in aiohttp-admin as a default admin title).
* Migrated from ``watchdog`` dependency to the newer ``watchfiles``.

1.0.post0 (2021-12-31)
======================

Expand Down
2 changes: 1 addition & 1 deletion aiohttp_devtools/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.post0"
__version__ = "1.1"

0 comments on commit 3ad02ba

Please sign in to comment.