From c43b3a766192f98a07f55bbf5f4379645dc76502 Mon Sep 17 00:00:00 2001 From: Connor Skees Date: Sun, 15 Aug 2021 23:33:54 -0400 Subject: [PATCH] bump version to 0.10.7 --- CHANGELOG.md | 4 +++- Cargo.toml | 2 +- README.md | 6 +++--- src/lib.rs | 4 ++-- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8059981..9baf7ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,10 @@ -# TBD +# 0.10.7 - special case plain CSS fn `clamp` - support more uses of plain CSS fns inside `rgb`/`rgba`/`hsl`/`hsla` - better support for `@at-root` at the toplevel and inside media queries +- bugfixes for the module system +- more robust handling of load paths that are directories # 0.10.6 diff --git a/Cargo.toml b/Cargo.toml index 31b428d..7b125aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grass" -version = "0.10.6" +version = "0.10.7" 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 d5330aa..800baaa 100644 --- a/README.md +++ b/README.md @@ -98,8 +98,8 @@ npm run sass-spec -- --command '../target/release/grass' These numbers come from a default run of the Sass specification as shown above. ``` -2021-07-24 -PASSING: 4178 -FAILING: 2078 +2021-08-15 +PASSING: 4205 +FAILING: 2051 TOTAL: 6256 ``` diff --git a/src/lib.rs b/src/lib.rs index 43199cc..299208b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,11 +1,11 @@ /*! # grass An implementation of Sass in pure rust. -Spec progress as of 2021-07-25: +Spec progress as of 0.10.7, released on 2021-08-15: | Passing | Failing | Total | |---------|---------|-------| -| 4018 | 2238 | 6256 | +| 4205 | 2051 | 6256 | ## Use as library ```