Skip to content

Commit

Permalink
Update version to 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
0x2a-42 committed Dec 26, 2024
1 parent 878e667 commit 95fbf0d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lelwel"
version = "0.6.4"
version = "0.7.0"
description = "Resilient LL(1) parser generator"
repository = "https://github.com/0x2a-42/lelwel"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ arg_list: '(' [expr (?1 ',' expr)* [',']] ')';
codespan-reporting = "0.11"

[build-dependencies]
lelwel = "0.6"
lelwel = "0.7"
```
```rust
fn main() {
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/generated.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// generated by lelwel 0.6.4
// generated by lelwel 0.7.0

#[allow(unused_macros)]
macro_rules! syntax_error_message {
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub mod backend;
pub mod frontend;
pub mod ide;

const VERSION: &str = "0.6.4";
const VERSION: &str = "0.7.0";

pub fn build(path: &str) {
let res = compile(
Expand Down

0 comments on commit 95fbf0d

Please sign in to comment.