From c3bfb074e0e8ed57cdbb560578e93808134ba625 Mon Sep 17 00:00:00 2001 From: Rasmus Kaj Date: Sun, 15 Oct 2017 15:24:52 +0200 Subject: [PATCH] Release 0.4.0 A default run of sass-spec found 1163 of 3331 tests passing (or 1227 of 6086 when claiming to be libsass). Changes since version 0.3.4 includes: * Implemented bracketed lists. * Support CSS3 pseudo elements * Added functions: unitless, content-exists, zip, is-bracketed, join. * Update the nom parser library to 3.2. * PR #13 Split of css values from sass values. * PR #10 Preparatory work for splitting Value * PR #7 Extract parser into separate module * PR #8 Extract som modules from lib.rs * Pin rustfmt to 0.8.4, to avoid surprising formatting changes. * PR #6 Don't require a git plugin for the check-spec. Thank You to Jonas Nicklas for many contributions. --- Cargo.toml | 2 +- README.md | 6 +++--- src/lib.rs | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b8190720b..10008d186 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rsass" -version = "0.4.0-PRE" +version = "0.4.0" authors = ["Rasmus Kaj "] categories = ["command-line-utilities", "web-programming"] keywords = ["scss", "sass", "css"] diff --git a/README.md b/README.md index 6d34797f1..7da19d8a9 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,9 @@ The sass language [is defined in its reference doc](http://sass-lang.com/documentation/file.SASS_REFERENCE.html). This implementation is incomplete but getting there, if slowly. -Progress: ![1146](http://progressed.io/bar/114?scale=331&suffix=6) -of 3310 tests passed -(or 1215 of 6065 when claiming to be libsass). +Progress: ![1163](http://progressed.io/bar/116?scale=333&suffix=3) +of 3331 tests passed +(or 1227 of 6086 when claiming to be libsass). If you want a working rust library for sass right now, you will probably be better of with [sass-rs](https://crates.io/crates/sass-rs) diff --git a/src/lib.rs b/src/lib.rs index 32116358a..9ec5150c0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -20,9 +20,9 @@ //! doc](http://sass-lang.com/documentation/file.SASS_REFERENCE.html). //! This implementation is incomplete but getting there, if slowly. //! -//! Progress: ![1146](http://progressed.io/bar/114?scale=331&suffix=6) -//! of 3310 tests passed -//! (or 1215 of 6065 when claiming to be libsass). +//! Progress: ![1163](http://progressed.io/bar/116?scale=333&suffix=3) +//! of 3331 tests passed +//! (or 1227 of 6086 when claiming to be libsass). //! //! If you want a working rust library for sass right now, you will //! probably be better of with [sass-rs](https://crates.io/crates/sass-rs)