Skip to content

Commit 4588ab8

Browse files
committed
bump: version 0.8.0 → 0.9.0
1 parent 801acee commit 4588ab8

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## v0.9.0 (2025-07-05)
2+
3+
### Feat
4+
5+
- implemented minimize_all()
6+
- better minimization for ast.AnnAssign
7+
- better minimization for ast.AugAssign
8+
- try to replace every ast.expr with ast.Constant(0)
9+
- replace names with unique_name_N if possible to show where a common name matters
10+
11+
### Refactor
12+
13+
- fixed typos
14+
115
## v0.8.0 (2025-04-16)
216

317
### Feat

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ license = "MIT"
2727
name = "pysource-minimize"
2828
readme = "README.md"
2929
requires-python = ">=3.8"
30-
version="0.8.0"
30+
version="0.9.0"
3131

3232
[project.optional-dependencies]
3333
cli = [

src/pysource_minimize/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
__all__ = ("minimize", "minimize_all", "CouldNotMinimize", "StopMinimization")
88

99

10-
version = "0.8.0"
10+
version = "0.9.0"

0 commit comments

Comments
 (0)