diff --git a/CHANGELOG.md b/CHANGELOG.md index 72b2abc..edcab63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # 1.x +## 1.1.1 (2024-08-29) + +- Update testing instructions to work with the latest versions of cmake+ctest. +- Fix `/*` matching too broadly (#12). + ## 1.1.0 (2024-03-26) - Added optional `spelling_language` parsing for EditorConfig `0.16.0`. diff --git a/Cargo.toml b/Cargo.toml index 21653a1..7d674ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,8 +13,8 @@ edition = "2021" authors = ["TheDaemoness"] include = ["/src", "/README.md", "/rustdoc.md"] -rust-version = "1.56" # 2021 edition -version = "1.1.0" +rust-version = "1.56" # 2021 edition +version = "1.1.1" [workspace] members = ["tools"] diff --git a/README.md b/README.md index 42ee076..5b560f5 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,9 @@ To run the test suite, run the following commands in a POSIX-like shell: ```bash cargo build --package ec4rs_tools git submodule update --init --recursive -cmake -DEDITORCONFIG_CMD="$PWD/target/debug/ec4rs-parse" -Stests -Btests -ctest --test-dir tests +cd tests +cmake -DEDITORCONFIG_CMD="$PWD/../target/debug/ec4rs-parse" . +ctest . ``` ## License