sasso-rails 0.1.4 → 0.1.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 +13 -0
- data/lib/sasso/rails/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c6608f26711bf73d29ec2d86536328dc0de6ada6dd634c10845a2ab5cc7ace4f
|
|
4
|
+
data.tar.gz: 359caa6deb1675ddbd90d8f0174d9892adb5a5604c3460976f1e8a320245c321
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1c9d539580067b05c211c08e4f84264141c98dbdf4a2ea13846fb7a10b6a0193d40c7674b605c1e6f31c680b41959a9944b4513350a3206b937d69eede7c4ee5
|
|
7
|
+
data.tar.gz: e91613f7038d1348dbb8d2b0d49d49b6281fb073b7972049910bd747bf920f7ecdec10bcf925c75da23a7cf8566853ce2ca8b118395e322931d8ba3e2f2ab3d8
|
data/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,19 @@ the engine-gem version range it requires.
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [0.1.5] - 2026-06-25
|
|
12
|
+
|
|
13
|
+
Requires the `sasso` gem **>= 0.2.6** (was `>= 0.2.3`).
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Bumped the `sasso` engine-gem floor to **>= 0.2.6**, which adopts core sasso
|
|
18
|
+
0.6.2: **compressed** output now emits the shortest equivalent legacy-color
|
|
19
|
+
form, matching dart-sass 1.101.0 byte-for-byte. A computed color such as
|
|
20
|
+
`darken(#336699, 10%)` compiles to `hsl(210,50%,30%)` instead of the longer
|
|
21
|
+
`rgb(38.25,76.5,114.75)`, and an integer-rgb-equivalent hsl literal
|
|
22
|
+
(`hsl(210, 50%, 40%)`) collapses to `#369`. Expanded output is unchanged.
|
|
23
|
+
|
|
11
24
|
## [0.1.4] - 2026-06-15
|
|
12
25
|
|
|
13
26
|
Requires the `sasso` gem **>= 0.2.3** (was `>= 0.2.0`).
|
data/lib/sasso/rails/version.rb
CHANGED
|
@@ -5,6 +5,6 @@ module Sasso
|
|
|
5
5
|
# Versioned INDEPENDENTLY of both the `sasso` gem and the `sasso` crate.
|
|
6
6
|
# The gemspec pins the engine gem with a range (sasso >= 0.1.1, < 1), so a
|
|
7
7
|
# compiler bump does not force a lockstep release of this integration gem.
|
|
8
|
-
VERSION = "0.1.
|
|
8
|
+
VERSION = "0.1.5"
|
|
9
9
|
end
|
|
10
10
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sasso-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.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-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|
|
@@ -30,7 +30,7 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.2.
|
|
33
|
+
version: 0.2.6
|
|
34
34
|
- - "<"
|
|
35
35
|
- !ruby/object:Gem::Version
|
|
36
36
|
version: '1'
|
|
@@ -40,7 +40,7 @@ dependencies:
|
|
|
40
40
|
requirements:
|
|
41
41
|
- - ">="
|
|
42
42
|
- !ruby/object:Gem::Version
|
|
43
|
-
version: 0.2.
|
|
43
|
+
version: 0.2.6
|
|
44
44
|
- - "<"
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
46
|
version: '1'
|