sasso 0.2.0 → 0.2.1

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: 528ef999790af85bfa776bd1d0ccc46d9769a89f382b820146edf5b3751ae7f3
4
- data.tar.gz: f451c06e65645007798c25774b7b7b1091b14ff469b1550826973e47ddeb090c
3
+ metadata.gz: 5b83a085e0c427df582f53252ddfbde353cc60a83ae9ac2f1e7585946bd20a49
4
+ data.tar.gz: c15820ef8bc74b6cf2d9c768d3e33caef1e7b7cc020dc48c9702df013c8bcc1c
5
5
  SHA512:
6
- metadata.gz: fbefa4b411714cf73f0afa5edb079b28b69f7b9f107c85b6d5e37157c9cb8a8fe9ec658f7064819c0c508723d0d7a8555a8f476d4265e0e4e94c1ae415236b44
7
- data.tar.gz: 19b4659b99da7bc4ec2257d3b81bd6f4ce882abce4248e79fb1c74d5aa8a6df26c0c0e115b24f95d595960f35f2078eec1a292bb8553bef167d44d8aa2a23caf
6
+ metadata.gz: 07476145e165d3c04e8a80f585b8978f7c8f5bc287c642b916893b69f18e5ae0de8d801f0c989e8d8e30d964aa5bb898d77d66ff26d65073afd1cb6400c30a5e
7
+ data.tar.gz: 978cfb0f5bdfec10c1d76ccb9db837df81aef4ac563984a6b931692c61ad4e2e1582e715e312d23e4a1addaac2db6f00fbb4fa618be2cb56a3921ea25ee5b1cd
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.1] - 2026-06-14
12
+
13
+ Adopts core crate **v0.5.1**.
14
+
15
+ ### Fixed
16
+
17
+ - Via core v0.5.1: source maps now map the `@media`/`@at-root`/`@supports`
18
+ bubbled parent selector and the `@supports` header, byte-exact to dart-sass —
19
+ fixing a 0.5.0 (= gem 0.2.0 pinned 0.4.0) compressed-map gap for `@media`/
20
+ `@at-root`-bubbled rules. Compressed output also gains dart-faithful whitespace
21
+ for `@media`/`@supports` preludes (`@media(min-width: 1px)`, `(a)and (b)`).
22
+
11
23
  ## [0.2.0] - 2026-06-14
12
24
 
13
25
  Adopts core crate **v0.4.0**.
data/Cargo.lock CHANGED
@@ -239,14 +239,14 @@ dependencies = [
239
239
  "magnus",
240
240
  "rb-sys",
241
241
  "rb-sys-env",
242
- "sasso 0.4.0",
242
+ "sasso 0.5.1",
243
243
  ]
244
244
 
245
245
  [[package]]
246
246
  name = "sasso"
247
- version = "0.4.0"
247
+ version = "0.5.1"
248
248
  source = "registry+https://github.com/rust-lang/crates.io-index"
249
- checksum = "aa9edae1ffa8368d44560b7519bbe27ff2a36c29b48b5b69421d1f490667607d"
249
+ checksum = "a7322172fdfc3d04685de2815ffad897f85bfca86eed1e661242691aa15be38a"
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.4.0" }
32
+ sasso_core = { package = "sasso", version = "=0.5.1" }
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.0"
6
+ VERSION = "0.2.1"
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.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - momiji-rs