Skip to content

Commit d44dc3b

Browse files
committed
garden v2.2.0
1 parent 551f9bd commit d44dc3b

File tree

5 files changed

+70
-6
lines changed

5 files changed

+70
-6
lines changed

changelog.html

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,10 +161,39 @@ <h1 class="menu-title">Garden User Guide</h1>
161161
<div id="content" class="content">
162162
<main>
163163
<h1 id="changelog"><a class="header" href="#changelog">Changelog</a></h1>
164-
<h2 id="upcoming"><a class="header" href="#upcoming">Upcoming</a></h2>
164+
<h2 id="v220"><a class="header" href="#v220">v2.2.0</a></h2>
165+
<p><em>Released 2025-05-11</em></p>
165166
<p><strong>Features</strong>:</p>
166167
<ul>
167168
<li>
169+
<p><code>garden ls</code> now has a <code>-R | --no-remotes</code> option to disable the display of remotes.</p>
170+
</li>
171+
<li>
172+
<p><code>garden gui</code> now avoids displaying duplicate trees.</p>
173+
</li>
174+
<li>
175+
<p><code>garden --help</code> now uses ANSI colors.</p>
176+
</li>
177+
</ul>
178+
<p><strong>Development</strong>:</p>
179+
<ul>
180+
<li>
181+
<p>The <code>xdg</code> dependency was upgraded to v3.0.</p>
182+
</li>
183+
<li>
184+
<p>The <code>idna_adapter</code> and <code>mime_guess2</code> crates were pinned to maintain the
185+
current MSRV of 1.81.0 for <code>garden-gui</code>.</p>
186+
</li>
187+
</ul>
188+
<h2 id="v210"><a class="header" href="#v210">v2.1.0</a></h2>
189+
<p><em>Released 2025-02-23</em></p>
190+
<p><strong>Features</strong>:</p>
191+
<ul>
192+
<li>
193+
<p>Commands defined in Garden and Tree scopes are now runnable from the <code>garden gui</code>
194+
command palette.</p>
195+
</li>
196+
<li>
168197
<p><code>garden grow</code> is now runnable from the <code>garden gui</code> commands and query results.</p>
169198
</li>
170199
<li>
@@ -201,6 +230,9 @@ <h2 id="upcoming"><a class="header" href="#upcoming">Upcoming</a></h2>
201230
<li>
202231
<p>The <code>yaml-rust2</code> dependency was upgraded to v0.10.</p>
203232
</li>
233+
<li>
234+
<p>The <code>egui</code> dependency was upgraded to v0.31.</p>
235+
</li>
204236
</ul>
205237
<p><strong>Documentation</strong>:</p>
206238
<ul>

installation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ <h2 id="cratesio"><a class="header" href="#cratesio">Crates.io</a></h2>
186186
<p>This will download and compile <code>garden</code> for you. The only thing left to do is
187187
to add the Cargo <code>$HOME/.cargo/bin</code> directory to your <code>$PATH</code>.</p>
188188
<p>The Garden graphical user interface is provided in a separate crate called <code>garden-gui</code>.
189-
You can install Garden GUI using <code>cargo</code> using Rust 1.81.0 or newer.</p>
189+
You can install Garden GUI using <code>cargo</code> from Rust version 1.81.0 or newer.</p>
190190
<pre><code>cargo install garden-gui
191191
</code></pre>
192192
<h2 id="latest-using-cargo"><a class="header" href="#latest-using-cargo">Latest using Cargo</a></h2>

print.html

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ <h2 id="cratesio"><a class="header" href="#cratesio">Crates.io</a></h2>
307307
<p>This will download and compile <code>garden</code> for you. The only thing left to do is
308308
to add the Cargo <code>$HOME/.cargo/bin</code> directory to your <code>$PATH</code>.</p>
309309
<p>The Garden graphical user interface is provided in a separate crate called <code>garden-gui</code>.
310-
You can install Garden GUI using <code>cargo</code> using Rust 1.81.0 or newer.</p>
310+
You can install Garden GUI using <code>cargo</code> from Rust version 1.81.0 or newer.</p>
311311
<pre><code>cargo install garden-gui
312312
</code></pre>
313313
<h2 id="latest-using-cargo"><a class="header" href="#latest-using-cargo">Latest using Cargo</a></h2>
@@ -2410,10 +2410,39 @@ <h2 id="can-garden-print-out-each-command-in-a-multi-line-command-as-it-is-run">
24102410
world
24112411
</code></pre>
24122412
<div style="break-before: page; page-break-before: always;"></div><h1 id="changelog"><a class="header" href="#changelog">Changelog</a></h1>
2413-
<h2 id="upcoming"><a class="header" href="#upcoming">Upcoming</a></h2>
2413+
<h2 id="v220"><a class="header" href="#v220">v2.2.0</a></h2>
2414+
<p><em>Released 2025-05-11</em></p>
24142415
<p><strong>Features</strong>:</p>
24152416
<ul>
24162417
<li>
2418+
<p><code>garden ls</code> now has a <code>-R | --no-remotes</code> option to disable the display of remotes.</p>
2419+
</li>
2420+
<li>
2421+
<p><code>garden gui</code> now avoids displaying duplicate trees.</p>
2422+
</li>
2423+
<li>
2424+
<p><code>garden --help</code> now uses ANSI colors.</p>
2425+
</li>
2426+
</ul>
2427+
<p><strong>Development</strong>:</p>
2428+
<ul>
2429+
<li>
2430+
<p>The <code>xdg</code> dependency was upgraded to v3.0.</p>
2431+
</li>
2432+
<li>
2433+
<p>The <code>idna_adapter</code> and <code>mime_guess2</code> crates were pinned to maintain the
2434+
current MSRV of 1.81.0 for <code>garden-gui</code>.</p>
2435+
</li>
2436+
</ul>
2437+
<h2 id="v210"><a class="header" href="#v210">v2.1.0</a></h2>
2438+
<p><em>Released 2025-02-23</em></p>
2439+
<p><strong>Features</strong>:</p>
2440+
<ul>
2441+
<li>
2442+
<p>Commands defined in Garden and Tree scopes are now runnable from the <code>garden gui</code>
2443+
command palette.</p>
2444+
</li>
2445+
<li>
24172446
<p><code>garden grow</code> is now runnable from the <code>garden gui</code> commands and query results.</p>
24182447
</li>
24192448
<li>
@@ -2450,6 +2479,9 @@ <h2 id="upcoming"><a class="header" href="#upcoming">Upcoming</a></h2>
24502479
<li>
24512480
<p>The <code>yaml-rust2</code> dependency was upgraded to v0.10.</p>
24522481
</li>
2482+
<li>
2483+
<p>The <code>egui</code> dependency was upgraded to v0.31.</p>
2484+
</li>
24532485
</ul>
24542486
<p><strong>Documentation</strong>:</p>
24552487
<ul>

searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

searchindex.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)