sasso 0.2.3 → 0.2.4

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: aa45441798e60123ce88d6ca1192da1dc4d91ee5596a16ef0fb4fb62eaa8e18c
4
- data.tar.gz: fb9dca01c7298e684c63665f6f1d0846af4d0d8647b6eedb7562a4dedc58e312
3
+ metadata.gz: bc61bf6462bc718e63dfd98eb86bfab7891895db135d6a3bee90570aeb84f42c
4
+ data.tar.gz: 9f9a2be1e475178f0692b653f3dfc8ec30e5da7ae0c96c27948eaf1c0b089026
5
5
  SHA512:
6
- metadata.gz: 93e47fce10188e49412daeaab413365aa21ceb4999ab9d6514c51f783f214c88094e139966da015ec6a4d8e3452b22b3a26b6b6cbb505cf8a0a7b735ba6f3678
7
- data.tar.gz: 6cf49194173aac55935efdd10ffb4fe49ced5d20ab9ba4885829a47aab283f1c22e84f47758f978897e442c44d6b973090ca9aaacc19fbfd6f52af07e1258ca9
6
+ metadata.gz: 8650c1ae7a3b0f04c193fcb21e9a9c74d2e7e1a5b637ac14707dfc546b4824ec1e47522be61f0a2bf77c5fd532187565feeb51cc930aa47178df6cc9319d83b1
7
+ data.tar.gz: 0ddfa5e1b5cdba9bb81f8a25510964a9fb5b03e628dc27bf726ca2256c60bcbff80bb17e918e461f35df012d8abd01cd075008b0473290a500ff08707d51cb93
data/CHANGELOG.md CHANGED
@@ -8,6 +8,16 @@ notes the exact core crate version it pins.
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [0.2.4] - 2026-06-15
12
+
13
+ ### Changed
14
+
15
+ - Adopt core **sasso 0.6.0**. The core release is a breaking change to the
16
+ Rust `Importer` trait (two-phase `canonicalize`/`load`), but the gem exposes
17
+ **no userland importer** — it builds the built-in `FsImporter` only — so this
18
+ is a recompile-only bump with **no change to the gem's Ruby API** (the same
19
+ `Sasso.compile` / `Sasso.compile_string` with `load_paths:` / `source_map:`).
20
+
11
21
  ## [0.2.3] - 2026-06-15
12
22
 
13
23
  Adopts core crate **v0.5.3**.
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.3",
242
+ "sasso 0.6.0",
243
243
  ]
244
244
 
245
245
  [[package]]
246
246
  name = "sasso"
247
- version = "0.5.3"
247
+ version = "0.6.0"
248
248
  source = "registry+https://github.com/rust-lang/crates.io-index"
249
- checksum = "c3a6ad160fc4c310e7bcfa5494c3be21588c28c564d66365f1429781bf4c5214"
249
+ checksum = "83097b3d397d2788442c22b10a20a173a771808342e595cef26241bac803eb07"
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.3" }
32
+ sasso_core = { package = "sasso", version = "=0.6.0" }
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.3"
6
+ VERSION = "0.2.4"
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.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - momiji-rs