update passing tests

This commit is contained in:
Connor Skees 2020-07-04 14:38:12 -04:00
parent 91ff4c10b4
commit a1d704ff82
3 changed files with 11 additions and 7 deletions

View File

@ -1,6 +1,10 @@
# TBD
# 0.9.3
- more robustly parse empty bracketed lists
- fix parsing bugs for empty bracketed lists
- partially implement inverse units
- remove all remaining `todo!()`s from binary and unary ops
- parse keywords case sensitively
- various optimizations that make bulma about *6x faster* to compile
# 0.9.2

View File

@ -75,9 +75,9 @@ cargo b --release
These numbers come from a default run of the Sass specification as shown above.
```
2020-07-03
PASSING: 2870
FAILING: 2223
2020-07-04
PASSING: 2874
FAILING: 2219
TOTAL: 5093
```

View File

@ -1,11 +1,11 @@
/*! # grass
An implementation of the Sass specification in pure rust.
Spec progress as of 2020-07-03:
Spec progress as of 2020-07-04:
| Passing | Failing | Total |
|---------|---------|-------|
| 2870 | 2223 | 5093 |
| 2874 | 2219 | 5093 |
## Use as library
```