diff --git a/CHANGELOG.md b/CHANGELOG.md index 9baf7ed..3156635 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.10.8 + +- bugfix: properly emit the number `0` in compressed mode (#53) + # 0.10.7 - special case plain CSS fn `clamp` diff --git a/Cargo.toml b/Cargo.toml index 7b125aa..41b346b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grass" -version = "0.10.7" +version = "0.10.8" description = "A near-feature-complete Sass compiler written purely in Rust" readme = "README.md" license = "MIT" diff --git a/README.md b/README.md index 800baaa..1aa0b3c 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ npm run sass-spec -- --command '../target/release/grass' These numbers come from a default run of the Sass specification as shown above. ``` -2021-08-15 +2021-09-20 PASSING: 4205 FAILING: 2051 TOTAL: 6256 diff --git a/src/lib.rs b/src/lib.rs index 299208b..a9d0414 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.10.7, released on 2021-08-15: +Spec progress as of 0.10.8, released on 2021-09-20: | Passing | Failing | Total | |---------|---------|-------|