Commit 7dd6676 1 parent f42aac9 commit 7dd6676 Copy full SHA for 7dd6676
File tree 3 files changed +34
-2
lines changed
3 files changed +34
-2
lines changed Original file line number Diff line number Diff line change
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
+
1
33
## v0.5.2 (2024-04-23)
2
34
3
35
### Fix
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
5
5
[project ]
6
6
name = " pysource-codegen"
7
- version = " 0.5.2 "
7
+ version = " 0.6.0 "
8
8
description = ' generate random python code to test linter/formatter/and other tools'
9
9
readme = " README.md"
10
10
requires-python = " >=3.8"
Original file line number Diff line number Diff line change 2
2
3
3
__all__ = ("generate" ,)
4
4
5
- __version__ = "0.5.2 "
5
+ __version__ = "0.6.0 "
You can’t perform that action at this time.
0 commit comments