Skip to content

Commit 8e144ee

Browse files
chore(release): 0.21.1
1 parent c8dc5a2 commit 8e144ee

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

docs/changelog.md

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

4+
## [0.21.1](https://github.com/arxlang/astx/compare/0.21.0...0.21.1) (2025-04-14)
5+
6+
7+
### Bug Fixes
8+
9+
* Fix semantic release configuration ([#257](https://github.com/arxlang/astx/issues/257)) ([c8dc5a2](https://github.com/arxlang/astx/commit/c8dc5a2c582a17abf5f1f9057a65131f86c456d0))
10+
411
# [0.21.0](https://github.com/arxlang/astx/compare/0.20.0...0.21.0) (2025-04-14)
512

613

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.0" # semantic-release
3+
version = "0.21.1" # 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.0", # semantic-release
16+
"astx == 0.21.1", # 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.19.0" # semantic-release
11+
return "0.21.1" # 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.0" # semantic-release
3+
version = "0.21.1" # 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.21.0" # semantic-release
208+
return "0.21.1" # 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.21.0" # semantic-release
3+
version = "0.21.1" # semantic-release
44
description = "ASTx is an agnostic expression structure for AST."
55
readme = "docs/index.md"
66
authors = [

0 commit comments

Comments
 (0)