From 46ecbfffe5c54f9617a6c9f46017dee9e8730a19 Mon Sep 17 00:00:00 2001 From: Connor Skees Date: Wed, 12 Aug 2020 16:27:16 -0400 Subject: [PATCH] update newly passing tests --- CHANGELOG.md | 7 ++++++- README.md | 6 +++--- src/lib.rs | 4 ++-- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36aa1d7..ed16921 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# TBD +# 0.10.1 - **implement `@use` and the module system** - support the filter syntax for function arguments, e.g. `alpha(opacity=1)` @@ -10,6 +10,11 @@ - allow escaped `!` in selectors - allow multiline comments in functions - resolve several panics on malformed input when parsing bracketed lists + - support NaN in all contexts + - add support for unicode ranges + - recognize plain CSS imports beginning with `//`, e.g. `@import "//fonts.googleapis.com/css?family=Droid+Sans";` + - resolve integer overflows in `@for` when bounds were equal to `isize::MIN` and `isize::MAX` + - allow quoted strings in default function arguments # 0.10.0 diff --git a/README.md b/README.md index 531cf72..42388bb 100644 --- a/README.md +++ b/README.md @@ -78,9 +78,9 @@ cargo b --release These numbers come from a default run of the Sass specification as shown above. ``` -2020-08-07 -PASSING: 3375 -FAILING: 1718 +2020-08-12 +PASSING: 3387 +FAILING: 1706 TOTAL: 5093 ``` diff --git a/src/lib.rs b/src/lib.rs index 4f29459..971544c 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-07: +Spec progress as of 2020-08-12: | Passing | Failing | Total | |---------|---------|-------| -| 3375 | 1718 | 5093 | +| 3387 | 1706 | 5093 | ## Use as library ```