sasso 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/Cargo.lock +3 -3
- data/ext/sasso/Cargo.toml +1 -1
- data/lib/sasso/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b0757111b1e0ce96bb8df0615adb8ccb87070c20cde63721f880643197dacae0
|
|
4
|
+
data.tar.gz: c1dff55138bfe1de33ea2c51cfd9e40ab410ea3e87e66933bfd310bb03d9d028
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 545c91df370d3e7f6f16ce24adc3b37b5d93f87a26cfbf1f872bb7101b04e0fddc22ab96b7d3ba38aca401aa8f3fff396f569ae14964210492f38db4b03e22d9
|
|
7
|
+
data.tar.gz: 408a910ff17ba7cad8186d746ca8d573e9bd4b6c2c44c3b56cb3750bf860e6e9c7d30b088f1cbbd41f24c7e44cb8c40a9fb508bbbaf7507e5d94223d3d5ef3dc
|
data/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,18 @@ notes the exact core crate version it pins.
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.2.2] - 2026-06-14
|
|
12
|
+
|
|
13
|
+
Adopts core crate **v0.5.2**.
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Via core v0.5.2: expanded output now emits dart-faithful `@at-root`
|
|
18
|
+
group-separation blank lines — one blank at a hoist→resume boundary that ends
|
|
19
|
+
in a style rule, with nested-`@at-root` chains and a rule + its own bubbled
|
|
20
|
+
`@media` kept contiguous (no more missing or over-emitted blanks). Byte-exact
|
|
21
|
+
to dart-sass; compressed output is unaffected.
|
|
22
|
+
|
|
11
23
|
## [0.2.1] - 2026-06-14
|
|
12
24
|
|
|
13
25
|
Adopts core crate **v0.5.1**.
|
data/Cargo.lock
CHANGED
|
@@ -239,14 +239,14 @@ dependencies = [
|
|
|
239
239
|
"magnus",
|
|
240
240
|
"rb-sys",
|
|
241
241
|
"rb-sys-env",
|
|
242
|
-
"sasso 0.5.
|
|
242
|
+
"sasso 0.5.2",
|
|
243
243
|
]
|
|
244
244
|
|
|
245
245
|
[[package]]
|
|
246
246
|
name = "sasso"
|
|
247
|
-
version = "0.5.
|
|
247
|
+
version = "0.5.2"
|
|
248
248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
-
checksum = "
|
|
249
|
+
checksum = "cd0695e62b0b86e3ac26ddb5a02b2341dbb150438514c6744840ffeadffb6c85"
|
|
250
250
|
|
|
251
251
|
[[package]]
|
|
252
252
|
name = "seq-macro"
|
data/ext/sasso/Cargo.toml
CHANGED
|
@@ -29,7 +29,7 @@ rb-sys = "0.9"
|
|
|
29
29
|
# The published core compiler, pinned exactly to the API surface this binding
|
|
30
30
|
# targets. Renamed to `sasso_core` so this package can be named `sasso` (a
|
|
31
31
|
# package may not depend on a crate of its own name without a rename).
|
|
32
|
-
sasso_core = { package = "sasso", version = "=0.5.
|
|
32
|
+
sasso_core = { package = "sasso", version = "=0.5.2" }
|
|
33
33
|
|
|
34
34
|
[build-dependencies]
|
|
35
35
|
rb-sys-env = "0.1"
|
data/lib/sasso/version.rb
CHANGED