add newly passing tests
This commit is contained in:
parent
173a896ab0
commit
36530a3309
@ -1,10 +1,12 @@
|
|||||||
# 0.9.2
|
# 0.9.2
|
||||||
|
|
||||||
- implement builtin functions `min` and `max`
|
- implement builtin functions `min` and `max`
|
||||||
|
- bugfixes for `@extend` and `selector-unify`
|
||||||
|
|
||||||
# 0.9.1
|
# 0.9.1
|
||||||
|
|
||||||
This release is largely focused on `@extend`, but it also resolves some regressions resulting from the new parser.
|
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
|
- properly document new API
|
||||||
- MVP implementation of `@supports`
|
- MVP implementation of `@supports`
|
||||||
@ -16,6 +18,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
|
This release is focused on setting up the groundwork for implementing `@extend` as well
|
||||||
as being able to compile Bootstrap.
|
as being able to compile Bootstrap.
|
||||||
|
|
||||||
- implement all builtin selector functions
|
- implement all builtin selector functions
|
||||||
- `selector-append`
|
- `selector-append`
|
||||||
- `selector-extend`
|
- `selector-extend`
|
||||||
@ -30,18 +33,19 @@ as being able to compile Bootstrap.
|
|||||||
- refactor control flow evaluation, resolving some issues blocking Bootstrap
|
- refactor control flow evaluation, resolving some issues blocking Bootstrap
|
||||||
|
|
||||||
#### Breaking Changes
|
#### Breaking Changes
|
||||||
|
|
||||||
- remove the `StyleSheet` struct in favor of freestanding functions, `from_string` and `from_path`
|
- remove the `StyleSheet` struct in favor of freestanding functions, `from_string` and `from_path`
|
||||||
|
|
||||||
# 0.8.3
|
# 0.8.3
|
||||||
|
|
||||||
This release is largely focused on performance and robustness
|
This release is largely focused on performance and robustness
|
||||||
|
|
||||||
- implement smallint optimization for numbers, making some benchmarks 50% faster
|
- implement smallint optimization for numbers, making some benchmarks 50% faster
|
||||||
- remove `bimap` as a dependency for storing named colors in favor of an ad hoc, more specialized data structure
|
- remove `bimap` as a dependency for storing named colors in favor of an ad hoc, more specialized data structure
|
||||||
- remove *dozens* of panics on malformed input
|
- remove _dozens_ of panics on malformed input
|
||||||
- use `beef::Cow` instead of `std::borrow::Cow`
|
- use `beef::Cow` instead of `std::borrow::Cow`
|
||||||
- increase code coverage to 80%
|
- increase code coverage to 80%
|
||||||
|
|
||||||
|
|
||||||
# 0.8.2
|
# 0.8.2
|
||||||
|
|
||||||
This release contains significant (>10x) improvements for WASM speed.
|
This release contains significant (>10x) improvements for WASM speed.
|
||||||
|
@ -43,9 +43,11 @@ Features currently blocking Bootstrap are tracked [here](https://github.com/conn
|
|||||||
## Features
|
## Features
|
||||||
|
|
||||||
### commandline
|
### commandline
|
||||||
|
|
||||||
(enabled by default): build a binary using clap
|
(enabled by default): build a binary using clap
|
||||||
|
|
||||||
### random
|
### random
|
||||||
|
|
||||||
(enabled by default): enable the builtin functions `random([$limit])` and `unique-id()`
|
(enabled by default): enable the builtin functions `random([$limit])` and `unique-id()`
|
||||||
|
|
||||||
In the future this feature will be removed when it is no longer necessary to rely on `rand` for
|
In the future this feature will be removed when it is no longer necessary to rely on `rand` for
|
||||||
@ -73,9 +75,9 @@ cargo b --release
|
|||||||
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.
|
||||||
|
|
||||||
```
|
```
|
||||||
2020-06-22
|
2020-06-23
|
||||||
PASSING: 2772
|
PASSING: 2800
|
||||||
FAILING: 2321
|
FAILING: 2293
|
||||||
TOTAL: 5093
|
TOTAL: 5093
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user