asciidoctor-html 2.0.3 → 2.1.0

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: 8c82206bbe281dbd650462b1690c4e4a37ee99da5ffa3143b81a31e222de9d21
4
- data.tar.gz: cf51b4fc64fcfa498fbe2411bd2d79535e65785ded51cc3fac366e8c2d4602df
3
+ metadata.gz: 76c462b54f4e7805c46849c2e788a566d6ea824896d86bd5f1328cea011fa2ec
4
+ data.tar.gz: 3310844a25ccf208a5635a23c6571fc79e9d2db1fcd74cc1c0aec9840d867ac7
5
5
  SHA512:
6
- metadata.gz: 5a510181aabf2f39863d31b7cf20a47fcb38f7cdb399184008702b85197be2b926a27cd745bac2da13fa3181485a5ca1c8c7b549c221cdb96898e9ee1069f4cc
7
- data.tar.gz: 0ec62eb1089e6e2ed52bd688a88639c6b21e32b428d0a5e07a505aa4173c0e9cac22b25a7a69ebdffee952d58c0172176a8e927914148c9624ee468592b7926f
6
+ metadata.gz: 23a330c6a57260d836a9880b212efec49770dbbaa9a07ecf9f30e580f1bec80b32329deefc5db4763e47310b1fe359784b0f9013583cbd7fb18dae3853db23ba
7
+ data.tar.gz: 26d535c70ece0e65b6a2467ac4fc886d258dcc714fe24c95fdb060d375b012406c30c670af240a68f01399da162194f95a29b198b85102b3a855210cfca22353
data/.rubocop.yml CHANGED
@@ -3,19 +3,19 @@ AllCops:
3
3
  NewCops: enable
4
4
 
5
5
  Metrics/AbcSize:
6
- Max: 50
6
+ Max: 60
7
7
 
8
8
  Metrics/CyclomaticComplexity:
9
- Max: 25
9
+ Max: 35
10
10
 
11
11
  Metrics/PerceivedComplexity:
12
- Max: 25
12
+ Max: 35
13
13
 
14
14
  Metrics/BlockNesting:
15
15
  Max: 5
16
16
 
17
17
  Metrics/MethodLength:
18
- Max: 35
18
+ Max: 50
19
19
 
20
20
  Metrics/ClassLength:
21
21
  Max: 300
@@ -26,6 +26,9 @@ Metrics/ModuleLength:
26
26
  Layout/LineLength:
27
27
  Max: 125
28
28
 
29
+ Lint/UselessAssignment:
30
+ Enabled: false
31
+
29
32
  Style/StringLiterals:
30
33
  EnforcedStyle: double_quotes
31
34
 
data/CHANGELOG.md CHANGED
@@ -231,3 +231,7 @@
231
231
  ## [2.0.3] - 2026-07-15
232
232
 
233
233
  - Always scroll to top of slide on flip.
234
+
235
+ ## [2.1.0] - 2026-07-25
236
+
237
+ - Add live attribute for dynamic presentations.