Skip to content

Commit 7755696

Browse files
committed
📝 Update CHANGELOG.md
1 parent cc7c5e9 commit 7755696

6 files changed

Lines changed: 167 additions & 59 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ Please file a bug if you notice a violation of semantic versioning.
2020

2121
### Added
2222

23+
- Support JRuby 10.1, truffleruby 34.0
24+
2325
### Changed
2426

2527
- Runtime dependency `turbo_tests2` now requires v3.1.4 or newer.

docs/file.AGENTS.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -270,16 +270,16 @@ <h3 id="template-management-kettle-jem">Template Management (kettle-jem)</h3>
270270
and regenerate local finishing artifacts such as binstubs:</p>
271271

272272
<pre class="code language-bash"><code class="language-bash"># Standard run (quiet, non-interactive — the default)
273-
mise exec -C /path/to/project -- env K_JEM_TEMPLATING=true bundle exec kettle-jem install
273+
mise exec -C /path/to/project -- env K_JEM_TEMPLATING=true kettle-jem install
274274

275275
# Verbose output (see per-file detail)
276-
mise exec -C /path/to/project -- env K_JEM_TEMPLATING=true KETTLE_JEM_VERBOSE=true bundle exec kettle-jem install
276+
mise exec -C /path/to/project -- env K_JEM_TEMPLATING=true KETTLE_JEM_VERBOSE=true kettle-jem install
277277

278278
# Interactive mode (prompt before each change)
279-
mise exec -C /path/to/project -- env K_JEM_TEMPLATING=true bundle exec kettle-jem install --interactive
279+
mise exec -C /path/to/project -- env K_JEM_TEMPLATING=true kettle-jem install --interactive
280280

281281
# Scoped file update only; skips install finishing steps
282-
mise exec -C /path/to/project -- env K_JEM_TEMPLATING=true bundle exec kettle-jem template --only README.md
282+
mise exec -C /path/to/project -- env K_JEM_TEMPLATING=true kettle-jem template --only README.md
283283
</code></pre>
284284

285285
<p>Use the <code>kettle-jem</code> executable as the public entrypoint. The<br>
@@ -410,7 +410,7 @@ <h2 id="-common-pitfalls">🚫 Common Pitfalls</h2>
410410
</div></div>
411411

412412
<div id="footer">
413-
Generated on Mon Jun 1 15:44:26 2026 by
413+
Generated on Thu Jun 18 23:51:29 2026 by
414414
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
415415
0.9.44 (ruby-4.0.5).
416416
</div>

docs/file.CHANGELOG.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,16 @@ <h2 id="unreleased"><a href="https://github.com/kettle-dev/kettle-test/compare/v
7474

7575
<h3 id="added">Added</h3>
7676

77+
<ul>
78+
<li>Support JRuby 10.1, truffleruby 34.0</li>
79+
</ul>
80+
7781
<h3 id="changed">Changed</h3>
7882

83+
<ul>
84+
<li>Runtime dependency <code>turbo_tests2</code> now requires v3.1.4 or newer.</li>
85+
</ul>
86+
7987
<h3 id="deprecated">Deprecated</h3>
8088

8189
<h3 id="removed">Removed</h3>
@@ -548,7 +556,7 @@ <h3 id="added-10">Added</h3>
548556
</div></div>
549557

550558
<div id="footer">
551-
Generated on Wed Jun 10 00:13:19 2026 by
559+
Generated on Thu Jun 18 23:51:29 2026 by
552560
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
553561
0.9.44 (ruby-4.0.5).
554562
</div>

docs/file.CONTRIBUTING.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,15 +187,15 @@ <h2 id="environment-variables-for-local-development">Environment Variables for L
187187
<li>Git hosting forges generally ignore external diff drivers, so pull request views may still show raw textual diffs even when local <code>git diff</code> uses semantic drivers.</li>
188188
</ul>
189189

190-
<pre class="code language-console"><code class="language-console">K_JEM_TEMPLATING=true bundle exec kettle-jem install
190+
<pre class="code language-console"><code class="language-console">K_JEM_TEMPLATING=true kettle-jem install
191191
</code></pre>
192192

193193
<p>Troubleshooting Git diffs</p>
194194
<ul>
195195
<li>Use <code>git diff --no-ext-diff</code> to compare against Git’s built-in diff output.</li>
196196
<li>Use <code>git diff --no-textconv</code> when a textconv projection obscures the raw file bytes you need to inspect.</li>
197197
<li>If Git reports a missing <code>smorg-*</code> executable, rerun <code>bundle install</code> and the setup command above, then check <code>git config --local --get-regexp '^diff\.smorg-'</code>.</li>
198-
<li>To remove managed local entries, run <code>K_JEM_TEMPLATING=true bundle exec kettle-jem install --undo</code>; remove global command registrations with <code>git config --global --unset-all diff.smorg-ruby.command</code>.</li>
198+
<li>To remove managed local entries, run <code>K_JEM_TEMPLATING=true kettle-jem install --undo</code>; remove global command registrations with <code>git config --global --unset-all diff.smorg-ruby.command</code>.</li>
199199
</ul>
200200

201201
<p>For a quick starting point, this repository’s <code>mise.toml</code> defines the shared defaults, and <code>.env.local</code> can override them locally. Copy <code>.env.local.example</code> to <code>.env.local</code>, use <code>KEY=value</code> lines, and either activate <code>mise</code> in your shell or run commands through <code>mise exec -C /path/to/project -- ...</code>.</p>
@@ -357,7 +357,7 @@ <h4 id="manual-process">Manual process</h4>
357357
</div></div>
358358

359359
<div id="footer">
360-
Generated on Wed Jun 10 00:13:19 2026 by
360+
Generated on Thu Jun 18 23:51:29 2026 by
361361
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
362362
0.9.44 (ruby-4.0.5).
363363
</div>

0 commit comments

Comments
 (0)