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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5b83a085e0c427df582f53252ddfbde353cc60a83ae9ac2f1e7585946bd20a49
4
- data.tar.gz: c15820ef8bc74b6cf2d9c768d3e33caef1e7b7cc020dc48c9702df013c8bcc1c
3
+ metadata.gz: b0757111b1e0ce96bb8df0615adb8ccb87070c20cde63721f880643197dacae0
4
+ data.tar.gz: c1dff55138bfe1de33ea2c51cfd9e40ab410ea3e87e66933bfd310bb03d9d028
5
5
  SHA512:
6
- metadata.gz: 07476145e165d3c04e8a80f585b8978f7c8f5bc287c642b916893b69f18e5ae0de8d801f0c989e8d8e30d964aa5bb898d77d66ff26d65073afd1cb6400c30a5e
7
- data.tar.gz: 978cfb0f5bdfec10c1d76ccb9db837df81aef4ac563984a6b931692c61ad4e2e1582e715e312d23e4a1addaac2db6f00fbb4fa618be2cb56a3921ea25ee5b1cd
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.1",
242
+ "sasso 0.5.2",
243
243
  ]
244
244
 
245
245
  [[package]]
246
246
  name = "sasso"
247
- version = "0.5.1"
247
+ version = "0.5.2"
248
248
  source = "registry+https://github.com/rust-lang/crates.io-index"
249
- checksum = "a7322172fdfc3d04685de2815ffad897f85bfca86eed1e661242691aa15be38a"
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.1" }
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
@@ -3,5 +3,5 @@
3
3
  module Sasso
4
4
  # The gem version floats INDEPENDENTLY of the core `sasso` crate version; the
5
5
  # native extension pins the crate exactly (ext/sasso/Cargo.toml: sasso = "=…").
6
- VERSION = "0.2.1"
6
+ VERSION = "0.2.2"
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sasso
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - momiji-rs