Skip to content

Commit 27ec192

Browse files
chore(release): 0.19.0
1 parent 76cf9d7 commit 27ec192

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

docs/changelog.md

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

4+
# [0.19.0](https://github.com/arxlang/astx/compare/0.18.2...0.19.0) (2025-03-18)
5+
6+
7+
### Features
8+
9+
* Add augmented assignment feature ([#208](https://github.com/arxlang/astx/issues/208)) ([4b5158e](https://github.com/arxlang/astx/commit/4b5158e3bd76d36cd5f94d5d9fabe1773e319994))
10+
* Add support for `AsyncFor` ([#211](https://github.com/arxlang/astx/issues/211)) ([e384edc](https://github.com/arxlang/astx/commit/e384edc6a03f8d9cd067888da132d515cc481fff))
11+
* Add support for `YieldFromExpr` ([#206](https://github.com/arxlang/astx/issues/206)) ([1a37027](https://github.com/arxlang/astx/commit/1a37027cea635867b53426a552e1b94e296f46b4))
12+
* Add Support for collection datatypes ([#186](https://github.com/arxlang/astx/issues/186)) ([dce0e1f](https://github.com/arxlang/astx/commit/dce0e1f4b6a2f7effb835c196195b8cfbc7a7f22))
13+
* **context-manager:** add context manager module, tests, and update base.py ([#183](https://github.com/arxlang/astx/issues/183)) ([2cd4a91](https://github.com/arxlang/astx/commit/2cd4a91f6ce4685145c17fd436a147c5af252c43))
14+
* create `AwaitExpr` and `FunctionAsyncDef` ([#184](https://github.com/arxlang/astx/issues/184)) ([51739ae](https://github.com/arxlang/astx/commit/51739ae023eaae5443024c7b49065486b1eeb2e4))
15+
416
## [0.18.2](https://github.com/arxlang/astx/compare/0.18.1...0.18.2) (2025-02-26)
517

618

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.2" # semantic-release
3+
version = "0.19.0" # 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
@@ -191,7 +191,7 @@ def get_version() -> str:
191191
try:
192192
return importlib_metadata.version(__name__)
193193
except importlib_metadata.PackageNotFoundError: # pragma: no cover
194-
return "0.18.2" # semantic-release
194+
return "0.19.0" # semantic-release
195195

196196

197197
__all__ = [

0 commit comments

Comments
 (0)