sasso 0.2.6 → 0.2.7

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: d5404bfc8e9cea85ef054cc7fa2523cca0faf4034d85bc756577c0a881ca176a
4
- data.tar.gz: fa193edab1aaf41b2acd616c9b6500835cb42b6358ead57e908bc0c61d1d1ec2
3
+ metadata.gz: fa5247a26666129d493b49655b25a696b6d3edb691ca67778ebaf5d7959ddc40
4
+ data.tar.gz: df82268c67577ff6fd41c7bc82291f614b603988f25c753ca3d82cdad4cf4a6c
5
5
  SHA512:
6
- metadata.gz: 5845b015cddd3e5d4fa5acb43c5289cfbd7dd0f8c4677f6be03a32548760cec4f470a89b8b28eb393d27392705fb63954d8b0ba228d41e8ee422cbd3e7bb45ab
7
- data.tar.gz: ec480b9d358e494769292d49812b65fcc542642612f0022c925860ce8ecec8b441c0ce7d2148f97f9a1e15fd3e043ee40f3dd3ef10f5adfc53aa75dab3a1a01c
6
+ metadata.gz: ba8e537045e3e0b587d706065d7872e0ee08ec06b89ecb25e7c5c6af6ebfebb8d73b0febab955b132c8997f2a2f2b41c20aadd374bb03dc36dd15c0a7ae89d90
7
+ data.tar.gz: ad75f75e99813a3bf68e76431ab4c38cfb36dec4b8104b46d9ce4f4524cda03603c3c893f0d3ebd40a70d1470a6a56b2ecd110aa9bfefae07450d9e08722cef7
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.7] - 2026-06-25
12
+
13
+ ### Changed
14
+
15
+ - Adopt core **sasso 0.6.3** (recompile-only; the gem's Ruby API is unchanged).
16
+ `Sasso.compile`/`Sasso.compile_string` now return the serialized stylesheet
17
+ with **no trailing newline**, byte-for-byte matching dart-sass's library API
18
+ (`sass` embedded / `compileString().css`). Previously expanded output carried
19
+ a stray trailing newline; compressed output is unchanged (it never had one).
20
+ If you write the result straight to a `.css` file and want the conventional
21
+ trailing newline, append `"\n"` yourself (most asset pipelines already do).
22
+
11
23
  ## [0.2.6] - 2026-06-25
12
24
 
13
25
  ### 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.2",
242
+ "sasso 0.6.3",
243
243
  ]
244
244
 
245
245
  [[package]]
246
246
  name = "sasso"
247
- version = "0.6.2"
247
+ version = "0.6.3"
248
248
  source = "registry+https://github.com/rust-lang/crates.io-index"
249
- checksum = "0a175453595ba780ef174d5120def66d9cbb91eed2eb6dc4223dbf5acfd82371"
249
+ checksum = "4bcc15ed0914f0ad1a1ed01b1aa236511eada9f911d5ab80cdd17dcf233d9a95"
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.2" }
32
+ sasso_core = { package = "sasso", version = "=0.6.3" }
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.6"
6
+ VERSION = "0.2.7"
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.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - momiji-rs