sasso 0.2.4 → 0.2.5
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 +9 -0
- data/Cargo.lock +3 -3
- data/ext/sasso/Cargo.toml +1 -1
- data/lib/sasso/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1f9c0d4c878c5cae536f470aa8a759adcafd682b2f431827a520cb7d1afa56e5
|
|
4
|
+
data.tar.gz: 323766eea80a4ac1f64064d6092090374b02767f24068ad0305b99fe2ebb7909
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e29e91c1512add8fd965c1e31a1ac24a245fda6abf8110042aa6818f93f83988076b6aab74eb0b0f789b3c0128237c03216d549a360d448636e27a953cbc166
|
|
7
|
+
data.tar.gz: a4b81272901ea421e97d0d1de26bea7dc6c5a89804985e8ac5cb3d384f726a4569b9483b8a217e0eb5823bf7f8470890cec7a6e000f3101b3fda9e88c9c0dac8
|
data/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,15 @@ notes the exact core crate version it pins.
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.2.5] - 2026-06-16
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Adopt core **sasso 0.6.1** (recompile-only; the gem's Ruby API is unchanged).
|
|
16
|
+
Picks up the upstream fix where a relative `meta.load-css` inside a first-class
|
|
17
|
+
mixin (`meta.get-mixin` + `meta.apply`) resolves against the mixin's defining
|
|
18
|
+
file rather than the caller's.
|
|
19
|
+
|
|
11
20
|
## [0.2.4] - 2026-06-15
|
|
12
21
|
|
|
13
22
|
### Changed
|
data/Cargo.lock
CHANGED
|
@@ -239,14 +239,14 @@ dependencies = [
|
|
|
239
239
|
"magnus",
|
|
240
240
|
"rb-sys",
|
|
241
241
|
"rb-sys-env",
|
|
242
|
-
"sasso 0.6.
|
|
242
|
+
"sasso 0.6.1",
|
|
243
243
|
]
|
|
244
244
|
|
|
245
245
|
[[package]]
|
|
246
246
|
name = "sasso"
|
|
247
|
-
version = "0.6.
|
|
247
|
+
version = "0.6.1"
|
|
248
248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
-
checksum = "
|
|
249
|
+
checksum = "08bf394355deb596478bb5bf81cdec3d1544469c4faf6edb8e471643f7b4c65a"
|
|
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.6.
|
|
32
|
+
sasso_core = { package = "sasso", version = "=0.6.1" }
|
|
33
33
|
|
|
34
34
|
[build-dependencies]
|
|
35
35
|
rb-sys-env = "0.1"
|
data/lib/sasso/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sasso
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- momiji-rs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-06-
|
|
11
|
+
date: 2026-06-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rb_sys
|