Skip to content

Commit 8e5b537

Browse files
committed
docs: sync changelog and version for v0.0.44
1 parent 6c6f512 commit 8e5b537

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

docs/project/changelog.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,28 @@ All notable changes to T-Ruby will be documented in this file.
1414
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1515
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1616

17+
## [0.0.44] - 2026-01-17
18+
19+
### Added
20+
21+
#### Direct `.trb` File Execution
22+
- **`trc run` command** - Execute `.trb` files directly without creating intermediate `.rb` files (#37)
23+
- In-memory compilation and execution for rapid development workflow
24+
- Preserves all type checking while streamlining the edit-run cycle
25+
26+
### Example
27+
28+
```bash
29+
# Before: Two-step process
30+
trc hello.trb
31+
ruby hello.rb
32+
33+
# After: Single command
34+
trc run hello.trb
35+
```
36+
37+
---
38+
1739
## [0.0.43] - 2026-01-10
1840

1941
### Added
@@ -342,6 +364,7 @@ T-Ruby is released under the MIT License. See LICENSE file for details.
342364

343365
| Version | Release Date | Status | Highlights |
344366
|---------|--------------|--------|------------|
367+
| [0.0.44](#0044---2026-01-17) | 2026-01-17 | Alpha | Direct `trc run` execution |
345368
| [0.0.43](#0043---2026-01-10) | 2026-01-10 | Alpha | Array shorthand syntax `T[]` |
346369
| [0.0.39](#0039---2025-12-24) | 2025-12-24 | Alpha | TypeScript-style type inference |
347370
| [0.1.0-alpha](#010-alpha---2025-12-09) | 2025-12-09 | Alpha | Initial release, core features |

static/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"compiler": "0.0.39",
2+
"compiler": "0.0.44",
33
"vscode": "0.2.0",
44
"jetbrains": "0.1.2",
55
"wasm": "0.0.8"

0 commit comments

Comments
 (0)