Skip to content

Commit c2f9b1d

Browse files
chore(release): 0.2.0
1 parent f7f61c0 commit c2f9b1d

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

docs/changelog.md

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

4+
# [0.2.0](https://github.com/arxlang/arx/compare/0.1.1...0.2.0) (2025-08-07)
5+
6+
7+
### Bug Fixes
8+
9+
* Fix usage of FunctionCall ([#15](https://github.com/arxlang/arx/issues/15)) ([f7f61c0](https://github.com/arxlang/arx/commit/f7f61c014cc7f400ae6af2e89cbbf9f3907f9b3a))
10+
11+
12+
### Features
13+
14+
* Add support for blocks of nodes ([#6](https://github.com/arxlang/arx/issues/6)) ([1fd099f](https://github.com/arxlang/arx/commit/1fd099fa7b505998e853b867039c6041005afe87))
15+
* Move the AST output to YAML format ([#7](https://github.com/arxlang/arx/issues/7)) ([6a8e10f](https://github.com/arxlang/arx/commit/6a8e10f8a3a7d49af466342483cc42849b263153))
16+
* Support multiple input files ([#8](https://github.com/arxlang/arx/issues/8)) ([ad31064](https://github.com/arxlang/arx/commit/ad31064baaf341a0a90da98016acc126c2e308e0))
17+
* Use ASTx and IRx as core libraries for AST and code generation ([#14](https://github.com/arxlang/arx/issues/14)) ([b730859](https://github.com/arxlang/arx/commit/b730859e98ecc1f3e09a346ba634377d777e6617))
18+
419
## [0.1.1](https://github.com/arxlang/arx/compare/0.1.0...0.1.1) (2023-06-26)
520

621

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "arxlang"
3-
version = "0.1.1" # semantic-release
3+
version = "0.2.0" # semantic-release
44
description = "Arx is a compiler built with llvm"
55
readme = "docs/index.md"
66
authors = [

src/arx/__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.1.1" # semantic-release
11+
return "0.2.0" # semantic-release
1212

1313

1414
version: str = get_version()

0 commit comments

Comments
 (0)