Skip to content

Commit a965378

Browse files
committed
bump: version 0.5.0 → 0.6.0
1 parent ff86502 commit a965378

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pysource-minimize"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
description = "minimize python source code"
55
authors = ["Frank Hoffmann"]
66
license = "MIT"

pysource_minimize/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
__all__ = ("minimize", "StopMinimization")
66

77

8-
version = "0.5.0"
8+
version = "0.6.0"

0 commit comments

Comments
 (0)