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 +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: 5b83a085e0c427df582f53252ddfbde353cc60a83ae9ac2f1e7585946bd20a49
|
|
4
|
+
data.tar.gz: c15820ef8bc74b6cf2d9c768d3e33caef1e7b7cc020dc48c9702df013c8bcc1c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
242
|
+
"sasso 0.5.1",
|
|
243
243
|
]
|
|
244
244
|
|
|
245
245
|
[[package]]
|
|
246
246
|
name = "sasso"
|
|
247
|
-
version = "0.
|
|
247
|
+
version = "0.5.1"
|
|
248
248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
-
checksum = "
|
|
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.
|
|
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