Skip to content

Commit

Permalink
Version 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-schilling committed Jan 11, 2025
1 parent d7fb357 commit 0e55ae7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Here's a screenshot of the toolbar in action:
In addition to the built-in panels, a number of third-party panels are
contributed by the community.

The current stable version of the Debug Toolbar is 5.0.0-alpha. It works on
The current stable version of the Debug Toolbar is 5.0.0. It works on
Django ≥ 4.2.0.

The Debug Toolbar has experimental support for `Django's asynchronous views
Expand Down
2 changes: 1 addition & 1 deletion debug_toolbar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# Do not use pkg_resources to find the version but set it here directly!
# see issue #1446
VERSION = "5.0.0-alpha"
VERSION = "5.0.0"

# Code that discovers files or modules in INSTALLED_APPS imports this module.
urls = "debug_toolbar.urls", APP_NAME
6 changes: 6 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,19 @@ Change log
Pending
-------


5.0.0 (2025-01-11)
------------------

* Added Python 3.13 to the CI matrix.
* Removed support for Python 3.8 as it has reached end of life.
* Converted to Django Commons PyPI release process.
* Fixed a crash which occurred when using non-``str`` static file values.
* Documented experimental async support.
* Improved troubleshooting doc for incorrect mime types for .js static files

Please see everything under 5.0.0-alpha as well.

5.0.0-alpha (2024-09-01)
------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
copyright = copyright.format(datetime.date.today().year)

# The full version, including alpha/beta/rc tags
release = "5.0.0-alpha"
release = "5.0.0"


# -- General configuration ---------------------------------------------------
Expand Down

0 comments on commit 0e55ae7

Please sign in to comment.