mirror of
https://github.com/pallets-eco/flask-debugtoolbar.git
synced 2025-12-31 02:29:33 -06:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
45d3588bb6 | ||
|
|
15e8d77a49 | ||
|
|
4d84f262ae | ||
|
|
db64ce632c | ||
|
|
956d7501ec |
21
CHANGES.rst
21
CHANGES.rst
@@ -1,19 +1,36 @@
|
||||
Changes
|
||||
=======
|
||||
|
||||
0.13.0 (Unreleased)
|
||||
0.14.0 (Unreleased)
|
||||
-------------------
|
||||
|
||||
Enhancements:
|
||||
|
||||
- ??
|
||||
|
||||
Fixes:
|
||||
|
||||
- ??
|
||||
|
||||
0.13.1 (2022-03-29)
|
||||
-------------------
|
||||
|
||||
Fixes:
|
||||
|
||||
- Use a consistent version naming convention, 0.13 should have been 0.13.0 but it was yanked and you can't re-push yanked packages with the same version
|
||||
|
||||
0.13 (2022-03-29)
|
||||
-------------------
|
||||
|
||||
Fixes:
|
||||
|
||||
- Correct `setup.cfg` to include package files by @nickjj in https://github.com/flask-debugtoolbar/flask-debugtoolbar/pull/172
|
||||
|
||||
0.12.1 (2022-03-28)
|
||||
-------------------
|
||||
|
||||
Fixes:
|
||||
|
||||
- Correct changelog and docs URLs on PyPI
|
||||
|
||||
|
||||
@@ -21,11 +38,13 @@ Fixes:
|
||||
-------------------
|
||||
|
||||
Enhancements:
|
||||
|
||||
- Add flask.g section to show g object content. by @Yaser-Amiri in https://github.com/flask-debugtoolbar/flask-debugtoolbar/pull/118
|
||||
- Support gzip response by @zaw007 in https://github.com/flask-debugtoolbar/flask-debugtoolbar/pull/154
|
||||
- Update PyPI metadata files: add `setup.cfg` etc by @jeffwidman in https://github.com/flask-debugtoolbar/flask-debugtoolbar/pull/164
|
||||
|
||||
Fixes:
|
||||
|
||||
- Remove deprecated Jinja with_ extension for Jinja 3.0 (related to Flask 2.0) by @nickjj in https://github.com/flask-debugtoolbar/flask-debugtoolbar/pull/157
|
||||
- Fix SQLAlchemy SELECT/EXPLAIN to use url_for to respect app prefixes.… by @mattaw in https://github.com/flask-debugtoolbar/flask-debugtoolbar/pull/143
|
||||
- Setup DB properly by @jeffwidman in https://github.com/flask-debugtoolbar/flask-debugtoolbar/pull/148
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
include LICENSE
|
||||
recursive-include flask_debugtoolbar/templates *.html
|
||||
recursive-include flask_debugtoolbar/static *
|
||||
recursive-include src/flask_debugtoolbar/templates *.html
|
||||
recursive-include src/flask_debugtoolbar/static *
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[metadata]
|
||||
name = Flask-DebugToolbar
|
||||
version = 0.12.1
|
||||
version = 0.13.1
|
||||
author = Michael van Tellingen
|
||||
author_email = michaelvantellingen@gmail.com
|
||||
maintainer = Matt Good
|
||||
@@ -25,11 +25,12 @@ classifiers =
|
||||
Topic :: Software Development :: Libraries :: Python Modules
|
||||
|
||||
[options]
|
||||
package_dir =
|
||||
= src
|
||||
|
||||
packages = find:
|
||||
package_dir = = flask_debugtoolbar
|
||||
include_package_data = True
|
||||
python_requires = >=2.7
|
||||
# Dependencies are in setup.py for GitHub's dependency graph.
|
||||
|
||||
[options.packages.find]
|
||||
where = flask_debugtoolbar
|
||||
where = src
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user