jekyll-highlight-cards 1.1.0 → 1.1.2

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: df6fe4fd7e9cfc9a2f4b27458264487b636501a524f4552dbb5869eec96f297d
4
- data.tar.gz: e02dfd7d8bcd15e0ff00f2d99b849bda1567c018c821a33690e94f623998e10c
3
+ metadata.gz: 4cbf0b0c999e64925cff2eab140b582e33e719bc1ad56ced35a8a7e88cf2d6d3
4
+ data.tar.gz: 1e6fe02ddf69839b3a1c8b8c8893b2006fdeb0493e339ece1fe8288965905f62
5
5
  SHA512:
6
- metadata.gz: e90a1491c24fcf3862d5a7a7b003a78e5bdbe8ddf6a5e053c096f5ea310f1648d20a7bfdb8f3fe4bfe98d2d1bc3ddb7a3cea7785b47269f1b5a133c7582d2b85
7
- data.tar.gz: 4b4088145935116bfa94ca4376ce42f2c4c3fec943a46f2f6680eebd1d8e844944b9ee092f124e38b19218bb3d135dab68ae377d367881d0c05c16136c8170e6
6
+ metadata.gz: d8b10dbc702ec0a40143f9a855183ec682614f96fe9c0915d3daf4886ac85a9cfae16951c0cddeca9ea8058d33de2b46a89c16ad81031309cf5232aef560d753
7
+ data.tar.gz: a7e43538f82974c0120b121af6f1df62ca9f517821768dd02890485b2af3f91288a4ff7dc9038ca57d1365017a57b40930aa34dc761baafdd6f34b87623bb87f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.1.2](https://github.com/Texarkanine/jekyll-highlight-cards/compare/v1.1.1...v1.1.2) (2026-01-01)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **deps-dev:** bump rubocop from 1.82.0 to 1.82.1 in the dev-deps-minor-patch group ([#22](https://github.com/Texarkanine/jekyll-highlight-cards/issues/22)) ([1788b1e](https://github.com/Texarkanine/jekyll-highlight-cards/commit/1788b1e0e00d1b9a5bbf4eaf27e2bb1a1657ed48))
9
+ * **deps-dev:** bump rubocop in the dev-deps-minor-patch group ([1788b1e](https://github.com/Texarkanine/jekyll-highlight-cards/commit/1788b1e0e00d1b9a5bbf4eaf27e2bb1a1657ed48))
10
+
11
+ ## [1.1.1](https://github.com/Texarkanine/jekyll-highlight-cards/compare/v1.1.0...v1.1.1) (2025-12-22)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * **css:** Refactor imports to use '[@use](https://github.com/use)' syntax ([#20](https://github.com/Texarkanine/jekyll-highlight-cards/issues/20)) ([14d4f1d](https://github.com/Texarkanine/jekyll-highlight-cards/commit/14d4f1dbd94a1ba6ccc5642e27c8114fd09e288a))
17
+ * **deps-dev:** bump rubocop from 1.81.7 to 1.82.0 in the dev-deps-minor-patch group ([#19](https://github.com/Texarkanine/jekyll-highlight-cards/issues/19)) ([031a996](https://github.com/Texarkanine/jekyll-highlight-cards/commit/031a99634fbdd06741c5f2fcf6f9d098f23173c2))
18
+ * **deps-dev:** bump rubocop in the dev-deps-minor-patch group ([031a996](https://github.com/Texarkanine/jekyll-highlight-cards/commit/031a99634fbdd06741c5f2fcf6f9d098f23173c2))
19
+
3
20
  ## [1.1.0](https://github.com/Texarkanine/jekyll-highlight-cards/compare/v1.0.1...v1.1.0) (2025-12-20)
4
21
 
5
22
 
data/README.md CHANGED
@@ -37,7 +37,7 @@ bundle install
37
37
  Add to your `main.scss` file:
38
38
 
39
39
  ```scss
40
- @import "highlight-cards";
40
+ @use "highlight-cards";
41
41
  ```
42
42
 
43
43
  ## Usage
@@ -155,7 +155,7 @@ export JEKYLL_HIGHLIGHT_CARDS_ARCHIVE=1
155
155
  Import the default styles which include both structure and colors:
156
156
 
157
157
  ```scss
158
- @import "highlight-cards";
158
+ @use "highlight-cards";
159
159
  ```
160
160
 
161
161
  This provides a complete, ready-to-use appearance.
@@ -165,7 +165,7 @@ This provides a complete, ready-to-use appearance.
165
165
  For complete control over colors and visual effects, import only the structural styles and define your own colors:
166
166
 
167
167
  ```scss
168
- @import "highlight-cards-structure";
168
+ @use "highlight-cards-structure";
169
169
 
170
170
  // Define your own color styles
171
171
  .polaroid {
@@ -14,5 +14,5 @@
14
14
  * All styles use low specificity for easy customization.
15
15
  */
16
16
 
17
- @import "highlight-cards-structure";
18
- @import "highlight-cards-colors";
17
+ @use "highlight-cards-structure";
18
+ @use "highlight-cards-colors";
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JekyllHighlightCards
4
- VERSION = "1.1.0"
4
+ VERSION = "1.1.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-highlight-cards
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Texarkanine
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-12-21 00:00:00.000000000 Z
11
+ date: 2026-01-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll