Skip to content

Commit

Permalink
bump: version 0.5.0 → 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
15r10nk committed Nov 12, 2023
1 parent ff86502 commit a965378
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## v0.6.0 (2023-11-12)

### Feat

- removed python 3.7 support
- minimize strings and bytes
- minimize int, float, boolean values

### Fix

- fix crash when minimizing raise statements
- minimize nonlocal and global names
- remove the upper dependency bounds
- minimize kw_defaults correctly
- minimize function defaults
- added py.typed
- minimize type comments

### Refactor

- created MinimizeStructure
- created MinimizeBase
- implemented ValueWrapper

## v0.5.0 (2023-10-20)

### Feat
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pysource-minimize"
version = "0.5.0"
version = "0.6.0"
description = "minimize python source code"
authors = ["Frank Hoffmann"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion pysource_minimize/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
__all__ = ("minimize", "StopMinimization")


version = "0.5.0"
version = "0.6.0"

0 comments on commit a965378

Please sign in to comment.