grass/CHANGELOG.md

55 lines
1.8 KiB
Markdown
Raw Normal View History

2020-06-22 11:07:54 -04:00
# 0.9.2
2020-06-23 04:36:15 -04:00
- implement builtin functions `min` and `max`
- bugfixes for `@extend` and `selector-unify`
2020-06-22 11:07:54 -04:00
2020-06-16 22:00:45 -04:00
# 0.9.1
2020-06-18 18:14:35 -04:00
This release is largely focused on `@extend`, but it also resolves some regressions resulting from the new parser.
2020-06-23 04:36:15 -04:00
- **implement `@extend`**
- properly document new API
- MVP implementation of `@supports`
- fix regression in which `@at-root` would panic when placed after a ruleset
- fix regression related to `@mixin` and `@function` scoping when combined with outer, local variables
- remove most remaining `unwrap`s that could result in a panic
2020-06-16 22:00:45 -04:00
2020-06-16 20:40:19 -04:00
# 0.9.0
This release is focused on setting up the groundwork for implementing `@extend` as well
as being able to compile Bootstrap.
2020-06-23 04:36:15 -04:00
- implement all builtin selector functions
- `selector-append`
- `selector-extend`
- `selector-nest`
- `selector-parse`
- `selector-replace`
- `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
2020-06-16 20:40:19 -04:00
#### Breaking Changes
2020-06-23 04:36:15 -04:00
- remove the `StyleSheet` struct in favor of freestanding functions, `from_string` and `from_path`
2020-06-16 20:40:19 -04:00
2020-05-25 16:23:10 -04:00
# 0.8.3
This release is largely focused on performance and robustness
2020-06-23 04:36:15 -04:00
- 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 _dozens_ of panics on malformed input
- use `beef::Cow` instead of `std::borrow::Cow`
- increase code coverage to 80%
2020-05-25 16:23:10 -04:00
# 0.8.2
This release contains significant (>10x) improvements for WASM speed.
Performance is now comparable to libsass bindings with `node-sass` as
well as `dart-sass` with dart2js. It is, however, roughly 4x slower than
native `grass`.