Skip to content

Commit 936372f

Browse files
chore(release): 0.22.0
1 parent 95011da commit 936372f

File tree

6 files changed

+21
-6
lines changed

6 files changed

+21
-6
lines changed

docs/changelog.md

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

4+
# [0.22.0](https://github.com/arxlang/astx/compare/0.21.1...0.22.0) (2025-08-06)
5+
6+
7+
### Bug Fixes
8+
9+
* Add reference to NoneType in the astx scope ([#280](https://github.com/arxlang/astx/issues/280)) ([95011da](https://github.com/arxlang/astx/commit/95011da4edc37d8d52b3bf0c3ca13526d5654456))
10+
11+
12+
### Features
13+
14+
* Add basic ASTX to python transpiler ([#278](https://github.com/arxlang/astx/issues/278)) ([f5bb717](https://github.com/arxlang/astx/commit/f5bb717c3aa4a6c0270c73bb803655cb7cada03b))
15+
* add Starred operator implementation with tests ([#275](https://github.com/arxlang/astx/issues/275)) ([41c2610](https://github.com/arxlang/astx/commit/41c26107952115963220b803262bcc42a0c5048d))
16+
* Add the support for ellipse ([#267](https://github.com/arxlang/astx/issues/267)) ([fb2c49f](https://github.com/arxlang/astx/commit/fb2c49fa44125e66646a3ba3f7af9feca4091651))
17+
* **transpiler:** implement Python AST node support with basic tests ([#279](https://github.com/arxlang/astx/issues/279)) ([9a9ce00](https://github.com/arxlang/astx/commit/9a9ce009660458f1f7661ef75a384d620abcbe59))
18+
419
## [0.21.1](https://github.com/arxlang/astx/compare/0.21.0...0.21.1) (2025-04-14)
520

621

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.21.1" # semantic-release
3+
version = "0.22.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.21.1", # semantic-release
16+
"astx == 0.22.0", # semantic-release
1717
]
1818

1919
[build-system]

libs/astx-transpilers/src/astx_transpilers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def get_version() -> str:
88
try:
99
return importlib_metadata.version(__name__)
1010
except importlib_metadata.PackageNotFoundError: # pragma: no cover
11-
return "0.21.1" # semantic-release
11+
return "0.22.0" # semantic-release
1212

1313

1414
version: str = get_version()

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.21.1" # semantic-release
3+
version = "0.22.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
@@ -210,7 +210,7 @@ def get_version() -> str:
210210
try:
211211
return importlib_metadata.version(__name__)
212212
except importlib_metadata.PackageNotFoundError: # pragma: no cover
213-
return "0.21.1" # semantic-release
213+
return "0.22.0" # semantic-release
214214

215215

216216
__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.21.1" # semantic-release
3+
version = "0.22.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)