From 169a6ec2b3824e2d1e0cb40a047757ab43a96e30 Mon Sep 17 00:00:00 2001 From: ConnorSkees <39542938+ConnorSkees@users.noreply.github.com> Date: Mon, 22 Jun 2020 11:07:54 -0400 Subject: [PATCH] implement `min` and `max` --- CHANGELOG.md | 14 +++++++++----- README.md | 6 +++--- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 268c7b6..8496b82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ +# 0.9.2 + + - implement builtin functions `min` and `max` + # 0.9.1 This release is largely focused on `@extend`, but it also resolves some regressions resulting from the new parser. - - **Implement `@extend`** + - **implement `@extend`** - properly document new API - MVP implementation of `@supports` - fix regression in which `@at-root` would panic when placed after a ruleset @@ -12,7 +16,7 @@ This release is largely focused on `@extend`, but it also resolves some regressi This release is focused on setting up the groundwork for implementing `@extend` as well as being able to compile Bootstrap. - - Implement all builtin selector functions + - implement all builtin selector functions - `selector-append` - `selector-extend` - `selector-nest` @@ -21,9 +25,9 @@ as being able to compile Bootstrap. - `selector-unify` - `simple-selectors` - `is-superselector` - - Implement builtin function `content-exists` - - Allow `@import`, `@warn`, and `@debug` in all contexts, such as inside `@mixin` - - Refactor control flow evaluation, resolving some issues blocking Bootstrap + - implement builtin function `content-exists` + - allow `@import`, `@warn`, and `@debug` in all contexts, such as inside `@mixin` + - refactor control flow evaluation, resolving some issues blocking Bootstrap #### Breaking Changes - remove the `StyleSheet` struct in favor of freestanding functions, `from_string` and `from_path` diff --git a/README.md b/README.md index c2215fe..81f6897 100644 --- a/README.md +++ b/README.md @@ -73,9 +73,9 @@ cargo b --release These numbers come from a default run of the Sass specification as shown above. ``` -2020-06-20 -PASSING: 2755 -FAILING: 2338 +2020-06-22 +PASSING: 2772 +FAILING: 2321 TOTAL: 5093 ```