Skip to content

Commit

Permalink
clarify RELEASES.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sgodwincs committed Apr 5, 2018
1 parent 62f3823 commit 1e2ceb4
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion RELEASES.md
Expand Up @@ -4,7 +4,18 @@
- Add back support for parsing `implements` statement for backwards compatibility with older WebIDLs
- Add back support for parsing `legacycaller` in special operations for backwards compatibility with older WebIDLs
- Update `lalrpop` to `0.15.1`. Version `0.15.0` cannot be used as it breaks with usage of `include!`
- Remove unnecessary `Parser` struct, since it does not do anything
- Remove unnecessary `Parser` struct, since it does not do anything. Instead of doing

```
let parser = Parser::new();
let result = parser.parse_string(...);
```

You can now simply do

```
let result = parse_string(...);
```

# 0.5.0

Expand Down

0 comments on commit 1e2ceb4

Please sign in to comment.