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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [1.3.0] - 2026-03-16

### Changed

- Migrate parser from `lib-ruby-parser` (Ruby 3.1.2) to `ruby-prism` (Ruby 3.3+)
- Support Ruby 3.2, 3.3, 3.4+ syntax
- Native handling of all encodings (ASCII, US-ASCII, etc.) — no custom decoder needed
- Error-tolerant parsing: always produces an AST, even with syntax errors
- Prism is Ruby's official default parser since 3.3

### Removed

- `lib-ruby-parser` dependency replaced by `ruby-prism`

## [1.2.5] - 2026-03-16

### Fixed
Expand Down
182 changes: 161 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rubyfast"
version = "1.2.5"
version = "1.3.0"
edition = "2024"
description = "An ultra-fast Ruby performance linter rewritten in Rust — detects 19 common anti-patterns"
license = "MIT"
Expand All @@ -10,7 +10,7 @@ keywords = ["ruby", "linter", "performance", "static-analysis"]
categories = ["command-line-utilities", "development-tools"]

[dependencies]
lib-ruby-parser = "4.0"
ruby-prism = "1.9"
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
Expand Down
Loading
Loading