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`
- support more uses of plain CSS fns inside `rgb`/`rgba`/`hsl`/`hsla`
- 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

View File

@ -1,6 +1,6 @@
[package]
name = "grass"
version = "0.10.6"
version = "0.10.7"
description = "A near-feature-complete Sass compiler written purely in Rust"
readme = "README.md"
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.
```
2021-07-24
PASSING: 4178
FAILING: 2078
2021-08-15
PASSING: 4205
FAILING: 2051
TOTAL: 6256
```

View File

@ -1,11 +1,11 @@
/*! # grass
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 |
|---------|---------|-------|
| 4018 | 2238 | 6256 |
| 4205 | 2051 | 6256 |
## Use as library
```