sasso 0.2.6-aarch64-linux → 0.2.7-aarch64-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: b82155aad61b507f04d6e33d5c4b124212a6ec8badf318d1eb345b205a86fcea
4
- data.tar.gz: 8e4a12aacf39b29aac0223a70163f6bf0dfc148d6857b7cd06e7fc1828876420
3
+ metadata.gz: afa936103e7f520de2b2f78e3d709a18b263ccd5e41c23ea50c1a6d66c11af4d
4
+ data.tar.gz: 13aa8cc441c37bb9a22bd1175e842775bb7beb3192d3f00408826512bd105f7f
5
5
  SHA512:
6
- metadata.gz: 476fd26bff9a1e348bf5ea1ef277eea9b851d357500611ea694aa2158c8ca5759ba884fa6b6ab832145d1a02cce9b971aa3c573405a3547cc2dd8db282e03b95
7
- data.tar.gz: 5a281b7fe004bc3f8db019e4811485acad2053a4bd57b64bbe90c7cdd605a608249aa3dc72e84006e3b64d37b643ecce22b7a59f3a5e5770238a3eca72edd80d
6
+ metadata.gz: aad4c08cec3c4555d36e7f7ce492e6ad1f9d767b5ed436464a75048a8b6db4be71198d93d4df9a607a88404178dd2130d49313ec3a2c338f85005b878b50dcaf
7
+ data.tar.gz: a4bd4255dd68ac2948de8ba26d5c68e0a5b0805d7ad2ac0d5aa5d51cdc928d380cee11933426360d07750177a5dcd2cff4b73ecf1a8f20695b990704a3894688
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: aarch64-linux
6
6
  authors:
7
7
  - momiji-rs