Skip to content

Commit 63e6877

Browse files
chore(release): 0.18.1
1 parent 7ea9187 commit 63e6877

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
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.18.1](https://github.com/arxlang/astx/compare/0.18.0...0.18.1) (2025-02-26)
5+
6+
7+
### Bug Fixes
8+
9+
* Fix ParenthesizedExpr value type ([#189](https://github.com/arxlang/astx/issues/189)) ([7ea9187](https://github.com/arxlang/astx/commit/7ea9187109750d6c2db41d0f6910096665ccff34))
10+
411
# [0.18.0](https://github.com/arxlang/astx/compare/0.17.0...0.18.0) (2025-02-26)
512

613

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.18.0" # semantic-release
3+
version = "0.18.1" # semantic-release
44
description = "ASTx is an agnostic expression structure for AST."
55
readme = "docs/index.md"
66
authors = [

src/astx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def get_version() -> str:
175175
try:
176176
return importlib_metadata.version(__name__)
177177
except importlib_metadata.PackageNotFoundError: # pragma: no cover
178-
return "0.18.0" # semantic-release
178+
return "0.18.1" # semantic-release
179179

180180

181181
__all__ = [

0 commit comments

Comments
 (0)