From a1d704ff823e23b423060975114411d82ee789ee Mon Sep 17 00:00:00 2001 From: Connor Skees Date: Sat, 4 Jul 2020 14:38:12 -0400 Subject: [PATCH] update passing tests --- CHANGELOG.md | 8 ++++++-- README.md | 6 +++--- src/lib.rs | 4 ++-- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8209b50..7055ab3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ -# TBD +# 0.9.3 - - more robustly parse empty bracketed lists + - fix parsing bugs for empty bracketed lists + - partially implement inverse units + - remove all remaining `todo!()`s from binary and unary ops + - parse keywords case sensitively + - various optimizations that make bulma about *6x faster* to compile # 0.9.2 diff --git a/README.md b/README.md index ed7cc0f..85c1fe3 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-03 -PASSING: 2870 -FAILING: 2223 +2020-07-04 +PASSING: 2874 +FAILING: 2219 TOTAL: 5093 ``` diff --git a/src/lib.rs b/src/lib.rs index e7f3eb9..361eac9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,11 +1,11 @@ /*! # grass An implementation of the Sass specification in pure rust. -Spec progress as of 2020-07-03: +Spec progress as of 2020-07-04: | Passing | Failing | Total | |---------|---------|-------| -| 2870 | 2223 | 5093 | +| 2874 | 2219 | 5093 | ## Use as library ```