From 2c5b7c919849aa4c97e6d2c204bf7d83eb68e107 Mon Sep 17 00:00:00 2001 From: Connor Skees Date: Sat, 15 Aug 2020 22:25:11 -0400 Subject: [PATCH] update newly passing tests --- CHANGELOG.md | 6 ++++++ README.md | 7 +++++++ src/lib.rs | 4 ++-- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a353639..28db46c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.10.3 + + - hyphen followed by interpolation is not treated as subtraction, e.g. `10-#{10}` => `10 -10` rather than `0` + - function arguments do not affect variables in outer scopes (fixes [#37](https://github.com/connorskees/grass/issues/37)) + - improve error messages for NaN with units passed to builtin functions + # 0.10.2 - use `std::fs::OpenOptions` to open files ([#35](https://github.com/connorskees/grass/pull/35) by [@MidasLamb](https://github.com/MidasLamb)) diff --git a/README.md b/README.md index 42388bb..b6b5b47 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,13 @@ cargo b --release These numbers come from a default run of the Sass specification as shown above. +``` +2020-08-15 +PASSING: 3384 +FAILING: 1703 +TOTAL: 5093 +``` + ``` 2020-08-12 PASSING: 3387 diff --git a/src/lib.rs b/src/lib.rs index 971544c..1c7b19c 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-08-12: +Spec progress as of 2020-08-15: | Passing | Failing | Total | |---------|---------|-------| -| 3387 | 1706 | 5093 | +| 3384 | 1703 | 5093 | ## Use as library ```