diff --git a/CHANGELOG.md b/CHANGELOG.md index 009affd..f55355c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,12 @@ - implement builtin functions `min` and `max` - bugfixes for `@extend` and `selector-unify` - allow `@content` to take arguments -- bugfixes for `@content`, for example chained mixins +- bugfixes for `@content`, for example it will no longer infinitely recurse for 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`) -- completely rewrite how styles are evaluated +- completely rewrite how styles are evaluated, allowing short circuiting of values like `false and unit(foo)` and `if(true, foo, unit(foo)` # 0.9.1 diff --git a/README.md b/README.md index 8fbfbab..ed7cc0f 100644 --- a/README.md +++ b/README.md @@ -76,8 +76,8 @@ These numbers come from a default run of the Sass specification as shown above. ``` 2020-07-03 -PASSING: 2867 -FAILING: 2226 +PASSING: 2870 +FAILING: 2223 TOTAL: 5093 ``` diff --git a/src/lib.rs b/src/lib.rs index 8388e3b..26ad0eb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,7 @@ Spec progress as of 2020-07-03: | Passing | Failing | Total | |---------|---------|-------| -| 2867 | 2226 | 5093 | +| 2870 | 2223 | 5093 | ## Use as library ```