File tree Expand file tree Collapse file tree 3 files changed +26
-2
lines changed
Expand file tree Collapse file tree 3 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 1+ ## v0.6.0 (2023-11-12)
2+
3+ ### Feat
4+
5+ - removed python 3.7 support
6+ - minimize strings and bytes
7+ - minimize int, float, boolean values
8+
9+ ### Fix
10+
11+ - fix crash when minimizing raise statements
12+ - minimize nonlocal and global names
13+ - remove the upper dependency bounds
14+ - minimize kw_defaults correctly
15+ - minimize function defaults
16+ - added py.typed
17+ - minimize type comments
18+
19+ ### Refactor
20+
21+ - created MinimizeStructure
22+ - created MinimizeBase
23+ - implemented ValueWrapper
24+
125## v0.5.0 (2023-10-20)
226
327### Feat
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " pysource-minimize"
3- version = " 0.5 .0"
3+ version = " 0.6 .0"
44description = " minimize python source code"
55authors = [" Frank Hoffmann" ]
66license = " MIT"
Original file line number Diff line number Diff line change 55__all__ = ("minimize" , "StopMinimization" )
66
77
8- version = "0.5 .0"
8+ version = "0.6 .0"
You can’t perform that action at this time.
0 commit comments