Skip to content

Commit 07da2a2

Browse files
chore(release): 0.18.2
1 parent 4d5e612 commit 07da2a2

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.2](https://github.com/arxlang/astx/compare/0.18.1...0.18.2) (2025-02-26)
5+
6+
7+
### Bug Fixes
8+
9+
* Include missing operator NotOp ([#190](https://github.com/arxlang/astx/issues/190)) ([4d5e612](https://github.com/arxlang/astx/commit/4d5e6125f3dd732d6a70663d4cfe203b4baaa201))
10+
411
## [0.18.1](https://github.com/arxlang/astx/compare/0.18.0...0.18.1) (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.1" # semantic-release
3+
version = "0.18.2" # 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
@@ -176,7 +176,7 @@ def get_version() -> str:
176176
try:
177177
return importlib_metadata.version(__name__)
178178
except importlib_metadata.PackageNotFoundError: # pragma: no cover
179-
return "0.18.1" # semantic-release
179+
return "0.18.2" # semantic-release
180180

181181

182182
__all__ = [

0 commit comments

Comments
 (0)