From 0c91fc323b1568ae58b44135c5136485e78adad9 Mon Sep 17 00:00:00 2001 From: Connor Skees Date: Fri, 3 Jul 2020 06:53:55 -0400 Subject: [PATCH] update passing tests and changelog --- CHANGELOG.md | 6 +++++- src/lib.rs | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f0ce46..a5258e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,8 +3,12 @@ - implement builtin functions `min` and `max` - bugfixes for `@extend` and `selector-unify` - allow `@content` to take arguments -- various optimizations, improving performance by around 10% (and resolving performance regressions due to `@extend`) +- bugfixes for `@content`, for example chained mixins +- better support queries in `@media` - bugfixes for `@media` +- 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`) # 0.9.1 diff --git a/src/lib.rs b/src/lib.rs index 854d7b5..66126d0 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-02: +Spec progress as of 2020-07-03: | Passing | Failing | Total | |---------|---------|-------| -| 2840 | 2253 | 5093 | +| 2862 | 2231 | 5093 | ## Use as library ```