From 0e1ea8762793a28bf7cee518083e4fa527c36dc0 Mon Sep 17 00:00:00 2001 From: Connor Skees Date: Fri, 3 Jul 2020 15:17:43 -0400 Subject: [PATCH] update passing tests --- CHANGELOG.md | 1 + README.md | 6 +++--- src/lib.rs | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5258e9..009affd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ - add support for splats, e.g. `rgba([1, 2, 3, 4]...)` - resolve a number of parsing bugs for `@for`, variable declarations, selectors, and maps - various optimizations, improving performance by around 10% (and resolving performance regressions due to `@extend`) +- completely rewrite how styles are evaluated # 0.9.1 diff --git a/README.md b/README.md index 748562a..8fbfbab 100644 --- a/README.md +++ b/README.md @@ -75,9 +75,9 @@ cargo b --release These numbers come from a default run of the Sass specification as shown above. ``` -2020-07-02 -PASSING: 2840 -FAILING: 2253 +2020-07-03 +PASSING: 2867 +FAILING: 2226 TOTAL: 5093 ``` diff --git a/src/lib.rs b/src/lib.rs index 50eab37..8388e3b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,7 @@ Spec progress as of 2020-07-03: | Passing | Failing | Total | |---------|---------|-------| -| 2862 | 2231 | 5093 | +| 2867 | 2226 | 5093 | ## Use as library ```