From 1ba2ffa326c4c17331c7edcb3efc3014a2c2e33d Mon Sep 17 00:00:00 2001 From: Rasmus Kaj Date: Fri, 28 Apr 2017 20:58:28 +0200 Subject: [PATCH] Release 0.2.0 * Err results from public functions is now `Error`, not `String`. This is a breaking change in public api. * PR #2: value interpolation (as separate values and in strings). * Implement basic `@content` for mixins (some scoping issues remains). * Support namespace properties. * Improve parsing of unquoted strings. * Implement the `call()` function. * Implement the `ie-hex-str()` function. * Allow alternative parameter names to `rgba()` function. * Improve defered operators handling. * Improve scopeing and value evaluating (but not enough). * Allow function declarations in blocks. * Implement `for`, `while`, and `each` in user-defined functions. * Fix scoping error for while loops. * Support css unary + and -. * Misc internal or smaller improvements (some suggested by clippy). --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7fec7b558..991276b39 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rsass" -version = "0.1.11" +version = "0.2.0" authors = ["Rasmus Kaj "] categories = ["command-line-utilities", "web-programming"] keywords = ["scss", "sass", "css"]