Skip to content

Commit 7dd6676

Browse files
committed
bump: version 0.5.2 → 0.6.0
1 parent f42aac9 commit 7dd6676

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

CHANGELOG.md

+32
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
## v0.6.0 (2024-10-09)
2+
3+
### Feat
4+
5+
- more variation in string constants
6+
- start to support 3.13
7+
8+
### Fix
9+
10+
- fixed typing
11+
- correct probability spelling
12+
- { and } are not allowed in formatspec, because they can not be escaped
13+
- asynchronous comprehension in TypeVar.bound
14+
- asynchronous comprehension outside of an asynchronous function
15+
- no async code in type annotations
16+
- the same varibale can be declared global multiple times
17+
- Starred expression inside ClassDef.bases
18+
- named expression cannot be used within a TypeVar bound
19+
- no async generators in type aliases
20+
- allow await in generator expressions
21+
- dict comprehension is a valid base class
22+
- named expression is a valid base class
23+
- allow SetComp in type-scope
24+
- lambda is valid inside annotations
25+
- made generator expressions valid inside class bases and type annotations
26+
- allow ListComp in type-scope
27+
- named-expressions inside list-comprehensions use the outside scope
28+
- restrict match value patterns
29+
- variable can not be nonlocal if it is declared global in the parent scope
30+
- count MatchStar variables as none usable global names
31+
- non default type params before type params with default values
32+
133
## v0.5.2 (2024-04-23)
234

335
### Fix

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "pysource-codegen"
7-
version= "0.5.2"
7+
version= "0.6.0"
88
description = 'generate random python code to test linter/formatter/and other tools'
99
readme = "README.md"
1010
requires-python = ">=3.8"

src/pysource_codegen/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__all__ = ("generate",)
44

5-
__version__ = "0.5.2"
5+
__version__ = "0.6.0"

0 commit comments

Comments
 (0)