bump version to 0.10.7

This commit is contained in:
Connor Skees 2021-08-15 23:33:54 -04:00
parent 1517acb188
commit c43b3a7661
4 changed files with 9 additions and 7 deletions

View File

@ -1,8 +1,10 @@
# TBD # 0.10.7
- special case plain CSS fn `clamp` - special case plain CSS fn `clamp`
- support more uses of plain CSS fns inside `rgb`/`rgba`/`hsl`/`hsla` - support more uses of plain CSS fns inside `rgb`/`rgba`/`hsl`/`hsla`
- better support for `@at-root` at the toplevel and inside media queries - better support for `@at-root` at the toplevel and inside media queries
- bugfixes for the module system
- more robust handling of load paths that are directories
# 0.10.6 # 0.10.6

View File

@ -1,6 +1,6 @@
[package] [package]
name = "grass" name = "grass"
version = "0.10.6" version = "0.10.7"
description = "A near-feature-complete Sass compiler written purely in Rust" description = "A near-feature-complete Sass compiler written purely in Rust"
readme = "README.md" readme = "README.md"
license = "MIT" license = "MIT"

View File

@ -98,8 +98,8 @@ npm run sass-spec -- --command '../target/release/grass'
These numbers come from a default run of the Sass specification as shown above. These numbers come from a default run of the Sass specification as shown above.
``` ```
2021-07-24 2021-08-15
PASSING: 4178 PASSING: 4205
FAILING: 2078 FAILING: 2051
TOTAL: 6256 TOTAL: 6256
``` ```

View File

@ -1,11 +1,11 @@
/*! # grass /*! # grass
An implementation of Sass in pure rust. An implementation of Sass in pure rust.
Spec progress as of 2021-07-25: Spec progress as of 0.10.7, released on 2021-08-15:
| Passing | Failing | Total | | Passing | Failing | Total |
|---------|---------|-------| |---------|---------|-------|
| 4018 | 2238 | 6256 | | 4205 | 2051 | 6256 |
## Use as library ## Use as library
``` ```