Skip to content

Commit 47e06d5

Browse files
chore(release): 0.20.0
1 parent 9f808be commit 47e06d5

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
lines changed

docs/changelog.md

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

4+
# [0.20.0](https://github.com/arxlang/astx/compare/0.19.0...0.20.0) (2025-03-27)
5+
6+
7+
### Bug Fixes
8+
9+
* Fix ASCII representation ([#214](https://github.com/arxlang/astx/issues/214)) ([f12305d](https://github.com/arxlang/astx/commit/f12305d65c078709affe14ccd2b6718fd38f9f48))
10+
* Fix the release workflow ([#227](https://github.com/arxlang/astx/issues/227)) ([a48d21b](https://github.com/arxlang/astx/commit/a48d21bf3ea0a351359abb5f6946d7dbe33475c8))
11+
* Fix the release workflow (2) ([#228](https://github.com/arxlang/astx/issues/228)) ([9f808be](https://github.com/arxlang/astx/commit/9f808bed30c1d436e11bd9c013835e71b2c563b8))
12+
13+
14+
### Features
15+
16+
* Add support for Comprehension ([#225](https://github.com/arxlang/astx/issues/225)) ([81ad947](https://github.com/arxlang/astx/commit/81ad94792a3ae7d766717220533b64ec6e5b3602))
17+
* Add support for DeleteStmt ([#224](https://github.com/arxlang/astx/issues/224)) ([806d402](https://github.com/arxlang/astx/commit/806d402727dc9bdf7ad317c87d8e5ef28af160c9))
18+
* **compare:** Add support for comparison operators ([0d0e859](https://github.com/arxlang/astx/commit/0d0e859c0f1619d0b52e33f88a37aef02d889a89))
19+
420
# [0.19.0](https://github.com/arxlang/astx/compare/0.18.2...0.19.0) (2025-03-18)
521

622

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.19.0" # semantic-release
3+
version = "0.20.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.19.0", # semantic-release
16+
"astx == 0.20.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.19.0" # semantic-release
3+
version = "0.20.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
@@ -194,7 +194,7 @@ def get_version() -> str:
194194
try:
195195
return importlib_metadata.version(__name__)
196196
except importlib_metadata.PackageNotFoundError: # pragma: no cover
197-
return "0.19.0" # semantic-release
197+
return "0.20.0" # semantic-release
198198

199199

200200
__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.19.0" # semantic-release
3+
version = "0.20.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)