diff --git a/CHANGELOG.md b/CHANGELOG.md index 981a26c..74d9c9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.11.1 + + - fix load path bug in which paths were searched for relative to the SCSS file, not the executable (#57) + # 0.11.0 - `fs` option added to allow interception and reimplementation of all file system operations (such as imports) diff --git a/Cargo.toml b/Cargo.toml index 8db343d..aa9aa20 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grass" -version = "0.11.0" +version = "0.11.1" description = "A near-feature-complete Sass compiler written purely in Rust" readme = "README.md" license = "MIT" diff --git a/src/lib.rs b/src/lib.rs index d6de76a..0ce9268 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ /*! # grass An implementation of Sass in pure rust. -Spec progress as of 0.11.0, released on 2022-04-03: +Spec progress as of 0.11.1, released on 2022-09-02: | Passing | Failing | Total | |---------|---------|-------|