Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
A default run of sass-spec found 1359 of 3331 tests passing (or 1416
of 6086 when claiming to be libsass). Changes since version 0.4.0
includes:

* Improve handling of quoted / unquoted strings and interpolation.
  Still not correct, but exhibits correct behavior in more tests than
  earlier.
* Support interpolation in selectors.
* Support interpolation in property names.
* PR #14: Implement map syntax and map functions.
* Make error handling not break if nom is compiled with verbose-errors.
* Miscellaneous internal cleanups, some suggested by clippy.
  • Loading branch information
kaj committed Nov 5, 2017
1 parent 1c1df54 commit 1455d94
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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.4.1-PRE"
version = "0.5.0"
authors = ["Rasmus Kaj <[email protected]>"]
categories = ["command-line-utilities", "web-programming"]
keywords = ["scss", "sass", "css"]
Expand Down
4 changes: 2 additions & 2 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: ![1163](http://progressed.io/bar/116?scale=333&suffix=3)
Progress: ![1359](http://progressed.io/bar/135?scale=333&suffix=9)
of 3331 tests passed
(or 1227 of 6086 when claiming to be libsass).
(or 1416 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)
Expand Down
4 changes: 2 additions & 2 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: ![1163](http://progressed.io/bar/116?scale=333&suffix=3)
//! Progress: ![1359](http://progressed.io/bar/135?scale=333&suffix=9)
//! of 3331 tests passed
//! (or 1227 of 6086 when claiming to be libsass).
//! (or 1416 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)
Expand Down

0 comments on commit 1455d94

Please sign in to comment.