diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a4c5b97..717c3e46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +**1.25.0** +- Handle rust2021 new error format +- Add `show_warngings` option +- Add `macro` to keywords +- Add `macro` to auto statement +- Add `const fn` and `unsafe fn` to statements that don't require `;` to be inserted, also score some style points with pattern matching +- Add new expect tests +- Update deps + **1.24.0** - Fix and simplify `read_until_bytes` (used by racer) - Fix crash on unicode char boundary diff --git a/Cargo.lock b/Cargo.lock index 41084f57..b00617d0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -104,7 +104,7 @@ dependencies = [ [[package]] name = "irust" -version = "1.24.0" +version = "1.25.0" dependencies = [ "bincode", "crossterm", diff --git a/crates/irust/Cargo.toml b/crates/irust/Cargo.toml index 8755b035..4d1f6358 100644 --- a/crates/irust/Cargo.toml +++ b/crates/irust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "irust" -version = "1.24.0" +version = "1.25.0" authors = ["Nbiba Bedis "] edition = "2018" readme = "README.md"