sasso 0.2.6-x86_64-linux → 0.2.7-x86_64-linux

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: 72a2f0c2bf4befe98dfa7c38975dfca57bc71a827d6f4e1439db8193256ea2b1
4
- data.tar.gz: 317a1eba64dbf77a78431b13b7cbabb86f86736645537a17d343834338f434a4
3
+ metadata.gz: 91cbaf5bd897cbece2019bbdb57335b0323b24ed6a0ad40ac57ab212397f3722
4
+ data.tar.gz: 870cd5783a4e90c0c4076e9ac08bda84ca22b2e0749408e329ba77478f8e0d15
5
5
  SHA512:
6
- metadata.gz: 75059bf0538a2027b77b1d912c05b56d6a9b10dce322a2b3c2153170973d244b67a3366cf15c0b5219ac72b9ad70dc206376809063fdcf038e29154a974b88c4
7
- data.tar.gz: 9aed3c0e4703d323d5ed3db2612bcf8a1aed3c7e4b5378640992616e15661ad74a4844d455b5c0e4a3aa1ab8c71f37d19b7fc8176591152264123dda8a18e27e
6
+ metadata.gz: 04a6e6b4568373e90f5dff566759063e6fc5a8f4307525b59ff005a62bb9de5228d65300f7c912ff4831a8954a3cb5a10feb0019b2966b7d791591f8e29abbb1
7
+ data.tar.gz: 2a44fb96b4f1d89ac68ba19b1805894949848467955978b66e877d16a03a8658985ef14af031daf819979a645e681900ce6f170c3ced20cfb35533c0c9ace32f
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
Binary file
Binary file
Binary file
Binary file
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: x86_64-linux
6
6
  authors:
7
7
  - momiji-rs