From 7697c0b89d3f957e7c14d70be7b0280ac7394d83 Mon Sep 17 00:00:00 2001 From: Rasmus Kaj Date: Sat, 6 May 2017 21:39:33 +0200 Subject: [PATCH] Release 0.3.2 A default run of sass-spec found 1053 of 3299 tests passing (or 1111 of 6054 when claiming to be libsass). Changes since version 0.3.0 includes: * Clean up nom error creation, to be compatible with both default and verbose-errors nom. * Implement some more quote strangenes. * Minor internal cleanup --- Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2890f9506..0e5731fdf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rsass" -version = "0.3.1" +version = "0.3.2" authors = ["Rasmus Kaj "] categories = ["command-line-utilities", "web-programming"] keywords = ["scss", "sass", "css"] diff --git a/README.md b/README.md index aa6c5a522..b265ae7ce 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: ![1039](http://progressed.io/bar/103?scale=329&suffix=9) +Progress: ![1053](http://progressed.io/bar/105?scale=329&suffix=3) of 3299 tests passed -(or 1097 of 6054 when claiming to be libsass). +(or 1111 of 6054 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 044747f13..8e8dd2847 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: ![1039](http://progressed.io/bar/103?scale=329&suffix=9) +//! Progress: ![1053](http://progressed.io/bar/105?scale=329&suffix=3) //! of 3299 tests passed -//! (or 1097 of 6054 when claiming to be libsass). +//! (or 1111 of 6054 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)