Skip to content

Commit

Permalink
v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ydah committed Jan 20, 2025
1 parent b042b29 commit fe1b94c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
15 changes: 14 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
# NEWS for Lrama

## Lrama 0.7.0 (2025-XX-XX)
## Lrama 0.7.0 (2025-01-21)

## [EXPERIMENTAL] Support the generation of the IELR(1) parser described in this paper

Support the generation of the IELR(1) parser described in this paper.
https://www.sciencedirect.com/science/article/pii/S0167642309001191

If you use IELR(1) parser, you can write the following directive in your grammar file.

```yacc
%define lr.type ielr
```

But, currently IELR(1) parser is experimental feature. If you find any bugs, please report it to us. Thank you.

## Support `-t` option as same as `--debug` option

Expand Down
2 changes: 1 addition & 1 deletion doc/Index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ $ cd "$(lrama root)"
$ bundle install
$ bundle exec rake install
$ bundle exec lrama --version
lrama 0.6.11
lrama 0.7.0
```
## Usage

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

module Lrama
VERSION = "0.6.11".freeze
VERSION = "0.7.0".freeze
end

0 comments on commit fe1b94c

Please sign in to comment.