Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.0.0 #63

Merged
merged 2 commits into from
Oct 13, 2023
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
## [Unreleased]

## [2.0.0] - 2023-10-13

- Migrate to Prism by @gazayas in #60
- Return array of Prism nodes for `Masamune::AbstractSyntaxTree` search methods.
- Refactor NodeHelper into inline extensions by @kaspth in #61
- Remove functionality to replace source code by Node name (the `type` keyword now only accepts Symbols such as `:variable` and `:method_call`).

## [1.0.0] - 2023-05-01

- Change `MasamuneAst` module to `Masamune`.
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
masamune-ast (1.2.1)
masamune-ast (2.0.0)
activesupport
prism (>= 0.13.0)

Expand Down
2 changes: 1 addition & 1 deletion lib/masamune/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Masamune
VERSION = "1.2.1"
VERSION = "2.0.0"
end