Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions crates/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.4](https://github.com/Dinnerbone/Rascal/compare/rascal_cli-v0.3.2...rascal_cli-v0.3.4) - 2026-05-17

### Other

- release v0.3.2

## [0.3.0](https://github.com/Dinnerbone/Rascal/compare/rascal_cli-v0.2.7...rascal_cli-v0.3.0) - 2026-05-12

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ path = "src/main.rs"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
rascal = { path = "../rascal", version = "0.3.3" }
rascal = { path = "../rascal", version = "0.3.4" }

[features]
default = []
Expand Down
18 changes: 18 additions & 0 deletions crates/rascal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.4](https://github.com/Dinnerbone/Rascal/compare/rascal-v0.3.2...rascal-v0.3.4) - 2026-05-17

### Added

- Support #include "foo.as"
- *(lexer)* Lex # tokens (will be used for preprocessor, e.g. #include)

### Fixed

- *(api)* Make sure our error type is Sync for compatibility with anyhow; use Arcs instead of Rc

### Other

- release v0.3.2
- Made error handling a little cleaner and work by span's `file_id` rather than a fixed file name
- *(ast)* Box ast::SwitchElement::Statement as it's three times bigger than Case
- Add file id to Span

## [0.3.3](https://github.com/Dinnerbone/Rascal/compare/rascal-v0.3.2...rascal-v0.3.3) - 2026-05-16

### Added
Expand Down