Skip to content

Commit

Permalink
Release rsass 0.9.8
Browse files Browse the repository at this point in the history
Sass-spec reports 1645 of 3440 tests for sass 3.6 passed.

* Improve support for `transparent`.
* PR #45 from @glebm: Automatically update passing / failing tests
  Hardkoded skiplists in spectest.rs is cleared apart for tests where
  rsass panics.
* Issue 43: Normalize newlines in tests.
* PR #44 from @glebm: Update to Rust 2018 Edition, Rust v1.31.0+
* Issue #39, PR #40 from @glebm: Parser CallArgs: Allow trailing
  spacelike sans ","
* Issue #32: Make the selectors module pub.
* Issue #34, PR #35 from @glebm: Accessing an undefined variable is an error.
* Allow input starting with UTF-8 U+FEFF BOM.
* Target sass spec version 3.6.

Thanks to contributors @glebm, @maxbrunsfeld and @sunjay for code and
suggestions.
  • Loading branch information
kaj committed Feb 10, 2019
1 parent 3b97ecd commit 480ef77
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rsass"
version = "0.9.7-PRE"
version = "0.9.8"
authors = ["Rasmus Kaj <[email protected]>"]
categories = ["command-line-utilities", "web-programming"]
keywords = ["scss", "sass", "css"]
Expand Down Expand Up @@ -34,7 +34,7 @@ num-traits = "^0.2.0"
rand = "0.6.1"
clap = { version = "^2.19", features = ["color", "wrap_help"], optional = true }
deunicode = { version = "0.4", optional = true }
regex = { version = "*", optional = true }
regex = { version = "1.1.0", optional = true }
yaml-rust = { version = "0.4", optional = true }

[badges]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ 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: ![1680](http://progressed.io/bar/168?suffix=0&scale=363)
of 3635 tests passed
Progress: ![1645](http://progressed.io/bar/164?suffix=5&scale=344)
of 3440 tests for sass 3.6 passed

If you want a working rust library for sass right now, you may
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 @@ -21,8 +21,8 @@
//! doc](http://sass-lang.com/documentation/file.SASS_REFERENCE.html).
//! This implementation is incomplete but getting there, if slowly.
//!
//! Progress: ![1680](http://progressed.io/bar/168?suffix=0&scale=363)
//! of 3635 tests passed
//! Progress: ![1645](http://progressed.io/bar/164?suffix=5&scale=344)
//! of 3440 tests for sass 3.6 passed
//!
//! If you want a working rust library for sass right now, you may
//! be better of with [sass-rs](https://crates.io/crates/sass-rs)
Expand Down

0 comments on commit 480ef77

Please sign in to comment.