Skip to content

Commit b0fd9b9

Browse files
chore(release): 0.21.0
1 parent 158e237 commit b0fd9b9

File tree

5 files changed

+23
-5
lines changed

5 files changed

+23
-5
lines changed

docs/changelog.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
# Release Notes
22
---
33

4+
# [0.21.0](https://github.com/arxlang/astx/compare/0.20.0...0.21.0) (2025-04-14)
5+
6+
7+
### Bug Fixes
8+
9+
* Fix Comprehension ([#243](https://github.com/arxlang/astx/issues/243)) ([0fc8192](https://github.com/arxlang/astx/commit/0fc8192a283fc57ca93bb431ae1aedbaec919837))
10+
* Fix Comprehension and ComprehensionClause ([#247](https://github.com/arxlang/astx/issues/247)) ([77c6d8c](https://github.com/arxlang/astx/commit/77c6d8c58f796af6feddab4988b18bdc1aeaadcc))
11+
* fix GeneratorExp class to inherit from comprehension class ([#244](https://github.com/arxlang/astx/issues/244)) ([94456ac](https://github.com/arxlang/astx/commit/94456acbbf4213bca2da420ce3b096765294a4c3))
12+
13+
14+
### Features
15+
16+
* Add `DoWhile` class ([#229](https://github.com/arxlang/astx/issues/229)) ([874bf53](https://github.com/arxlang/astx/commit/874bf53b1c71830b72dfa754753ca9ff52723781))
17+
* add ContinueStmt and BreakStmt ([#255](https://github.com/arxlang/astx/issues/255)) ([158e237](https://github.com/arxlang/astx/commit/158e2371860f753a56d7e6ab475dbbf8732e6477))
18+
* Add Generator Expr support ([#232](https://github.com/arxlang/astx/issues/232)) ([c163c4c](https://github.com/arxlang/astx/commit/c163c4c5a04341658c3a4b79b22bcb832ddea0e7))
19+
* Add support for ComprehensionList ([#250](https://github.com/arxlang/astx/issues/250)) ([91edba7](https://github.com/arxlang/astx/commit/91edba793a826714471a61cebed369eba91f68e4))
20+
* Add support for Set-Comprehension ([#253](https://github.com/arxlang/astx/issues/253)) ([8d7ba85](https://github.com/arxlang/astx/commit/8d7ba858d3ee0b5d61e698b7ce1363a12e5fd8a3))
21+
422
# [0.20.0](https://github.com/arxlang/astx/compare/0.19.0...0.20.0) (2025-03-27)
523

624

libs/astx-transpilers/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "astx-transpilers"
3-
version = "0.20.0" # semantic-release
3+
version = "0.21.0" # semantic-release
44
description = "ASTx is an agnostic expression structure for AST."
55
readme = "README.md"
66
authors = [
@@ -13,7 +13,7 @@ dependencies = [
1313
"plum-dispatch >= 2",
1414
"typeguard >= 4",
1515
"eval-type-backport >=0.2 ; python_version < '3.10'",
16-
"astx == 0.20.0", # semantic-release
16+
"astx == 0.21.0", # semantic-release
1717
]
1818

1919
[build-system]

libs/astx/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "astx"
3-
version = "0.20.0" # semantic-release
3+
version = "0.21.0" # semantic-release
44
description = "ASTx is an agnostic expression structure for AST."
55
readme = "README.md"
66
authors = [

libs/astx/src/astx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def get_version() -> str:
205205
try:
206206
return importlib_metadata.version(__name__)
207207
except importlib_metadata.PackageNotFoundError: # pragma: no cover
208-
return "0.20.0" # semantic-release
208+
return "0.21.0" # semantic-release
209209

210210

211211
__all__ = [

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "astx-dev"
3-
version = "0.20.0" # semantic-release
3+
version = "0.21.0" # semantic-release
44
description = "ASTx is an agnostic expression structure for AST."
55
readme = "docs/index.md"
66
authors = [

0 commit comments

Comments
 (0)