From 7f36a58fbd12610745e8cd5125079d9dbe7d4c45 Mon Sep 17 00:00:00 2001 From: Rasmus Kaj Date: Fri, 27 May 2022 23:45:35 +0200 Subject: [PATCH] Release 0.25.2 Released 2022-05-27. Progress: 4350 of 6552 tests passed in dart-sass compatibility mode. * Use platform-dependent `path.join` for putting the local part after a base path, seems to make slash-separated strings ok as the joined part. (PR #144, issue #133) * Update sass-spec test suite to 2022-05-20. Thanks to @fasterthanlime for reporting and testing. --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c0c197f5..852696135 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,10 @@ The format is based on project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## Release 0.25.2 + +Released 2022-05-27. +Progress: 4350 of 6552 tests passed in dart-sass compatibility mode. * Use platform-dependent `path.join` for putting the local part after a base path, seems to make slash-separated strings ok as the joined diff --git a/Cargo.toml b/Cargo.toml index 7f17c34b3..5d8ecfc5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rsass" -version = "0.25.1-PRE" +version = "0.25.2" authors = ["Rasmus Kaj "] categories = ["command-line-utilities", "web-programming"] keywords = ["scss", "sass", "css"] diff --git a/README.md b/README.md index d8a7d9876..5599834cb 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ 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: 4331 of 6523 tests passed in dart-sass compatibility mode. +Progress: 4350 of 6552 tests passed in dart-sass compatibility mode. 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) diff --git a/src/lib.rs b/src/lib.rs index 06e2b79ee..af8ec22d3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -24,7 +24,7 @@ //! doc](http://sass-lang.com/documentation/file.SASS_REFERENCE.html). //! This implementation is incomplete but getting there, if slowly. //! -//! Progress: 4331 of 6523 tests passed in dart-sass compatibility mode. +//! Progress: 4350 of 6552 tests passed in dart-sass compatibility mode. //! //! 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)