Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
A default run of sass-spec found 1466 of 3339 tests passing (or 1520
of 6094 when claiming to be libsass). Changes since version 0.5.0
includes:

* Handle quoting and escaping in strings closer to correct.
* Updated lazy_static to version 1.0
* Some internal cleanup.
  • Loading branch information
kaj committed Dec 6, 2017
1 parent 1933af5 commit 5a6407a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rsass"
version = "0.5.1-PRE"
version = "0.6.0"
authors = ["Rasmus Kaj <[email protected]>"]
categories = ["command-line-utilities", "web-programming"]
keywords = ["scss", "sass", "css"]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: ![1359](http://progressed.io/bar/135?scale=333&suffix=9)
of 3331 tests passed
(or 1416 of 6086 when claiming to be libsass).
Progress: ![1466](http://progressed.io/bar/146?scale=333&suffix=6)
of 3339 tests passed
(or 1520 of 6094 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)
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
//! doc](http://sass-lang.com/documentation/file.SASS_REFERENCE.html).
//! This implementation is incomplete but getting there, if slowly.
//!
//! Progress: ![1359](http://progressed.io/bar/135?scale=333&suffix=9)
//! of 3331 tests passed
//! (or 1416 of 6086 when claiming to be libsass).
//! Progress: ![1466](http://progressed.io/bar/146?scale=333&suffix=6)
//! of 3339 tests passed
//! (or 1520 of 6094 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)
Expand Down

0 comments on commit 5a6407a

Please sign in to comment.