Releases: samuelcolvin/python-devtools
Releases · samuelcolvin/python-devtools
v0.12.2 (2023-09-03)
What's Changed
- install debug into
builtins
viaDebugProxy
by @samuelcolvin in #139
Full Changelog: v0.12.1...v0.12.2
v0.12.1 (2023-08-17)
Fix docs publish.
Full Changelog: v0.12.0...v0.12.1
v0.12.0 (2023-08-17)
What's Changed
- build docs on CI by @samuelcolvin in #127
- Update usage to reflect the recent addition of the pytest plugin by @tomhamiltonstubber in #128
- Bump requests from 2.28.2 to 2.31.0 in /requirements by @dependabot in #130
- Bump pygments from 2.13.0 to 2.15.0 in /docs by @dependabot in #133
- Bump pygments from 2.14.0 to 2.15.0 in /requirements by @dependabot in #134
- Bump pymdown-extensions from 9.10 to 10.0 in /requirements by @dependabot in #129
- Bump certifi from 2022.12.7 to 2023.7.22 in /requirements by @dependabot in #135
- support dataclasses with slots by @samuelcolvin in #136
- Make
Pygments
required by @samuelcolvin in #137 - Uprev 0.12.0 by @samuelcolvin in #138
New Contributors
- @tomhamiltonstubber made their first contribution in #128
Full Changelog: v0.11.0...v0.12.0
v0.11.0 (2023-04-05)
What's Changed
- added support for sqlalchemy2 by @the-vty in #120
- switch to ruff by @samuelcolvin in #124
- support displaying ast types by @samuelcolvin in #125
- Insert assert by @samuelcolvin in #126
New Contributors
Full Changelog: v0.10.0...v0.11.0
v0.10.0 (2022-11-28)
- Use secure builtins standard module, instead of the
__builtins__
by @0xsirsaif in #109 - upgrade executing to fix 3.10 by @samuelcolvin in #110
- Fix windows build by @samuelcolvin in #111
- Allow executing dependency to be >1.0.0 by @staticf0x in #115
- more precise timer summary by @banteg in #113
- Python 3.11 by @samuelcolvin in #118
New Contributors
- @0xsirsaif made their first contribution in #109
- @staticf0x made their first contribution in #115
- @banteg made their first contribution in #113
Full Changelog: v0.9.0...v0.10.0
v0.9.0 (2022-07-26)
- fix format of nested dataclasses, #99 thanks @aliereno
- Moving to
pyproject.toml
, complete type hints and test with mypy, #107 - add
install
command to adddebug
to__builtins__
, #108
Full Changelog: v0.8.0...v0.9.0
v0.8.0 (2021-09-29)
v0.7.0 (2021-09-03)
- switch to
executing
andasttokens
for finding and printing debug arguments, #82, thanks @alexmojaki - correct changelog links, #76, thanks @Cielquan
- return
debug()
arguments, #87 - display more generators like
map
andfilter
, #88 - display
Counter
and similar dict-like objects properly, #88 - display
dataclasses
properly, #88 - uprev test dependencies, #81, #83, #90
v0.6.1
compatibility with python 3.8.6
v0.6
v0.6.0 (2020-07-29)
- improve
__pretty__
to work better with pydantic classes, #52 - improve the way statement ranges are calculated, #58
- drastically improve import time, #50
- pretty printing for non-standard dicts, #60
- better statement finding for multi-line statements, #61
- colors in windows, #57
- fix
debug(type(dict(...)))
, #62