<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mingling.git, branch version/0.3.0</title>
<subtitle>用于开发多子命令的命令行框架
</subtitle>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/'/>
<entry>
<title>docs(changelog): document RenderResult::new and removed r_print macros</title>
<updated>2026-07-11T08:16:40+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-11T08:16:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=25e37e54220fce49a0387dc0a7c332b19e4240be'/>
<id>25e37e54220fce49a0387dc0a7c332b19e4240be</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>style: Reorder imports and reformat code with cargo fmt</title>
<updated>2026-07-11T08:10:53+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-11T08:10:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=85c8986f26031cc11ed1e1da77fdf099b5814381'/>
<id>85c8986f26031cc11ed1e1da77fdf099b5814381</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: migrate renderers from `r_println!` to `RenderResult` return type</title>
<updated>2026-07-11T08:03:20+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-11T08:03:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=810536fb1f068f969af316be0450a1edacfe8e28'/>
<id>810536fb1f068f969af316be0450a1edacfe8e28</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(mingling): add Write import and doc comment for picker re-export</title>
<updated>2026-07-11T08:03:09+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-11T08:03:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=4bf23c20f2d7cdfcc988b654a93abae1cd211ad8'/>
<id>4bf23c20f2d7cdfcc988b654a93abae1cd211ad8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(readme): migrate renderer examples from r_print macros to</title>
<updated>2026-07-11T07:30:45+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-11T07:30:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=ed29ce55f264a6a3cce22b4ec6daa28edeee157c'/>
<id>ed29ce55f264a6a3cce22b4ec6daa28edeee157c</id>
<content type='text'>
RenderResult

Replace all uses of `r_print!` and `r_println!` with the new
`RenderResult`-based API
in the documentation. Add missing `use` imports (`pack`, `prelude`,
`std::io::Write`)
to make code examples self-contained and runnable.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
RenderResult

Replace all uses of `r_print!` and `r_println!` with the new
`RenderResult`-based API
in the documentation. Add missing `use` imports (`pack`, `prelude`,
`std::io::Write`)
to make code examples self-contained and runnable.
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: mark remove-r-print-macro tasks as complete</title>
<updated>2026-07-11T07:24:34+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-11T07:24:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=befdc9e609c14aa768a3ab299ae0c678201a8c65'/>
<id>befdc9e609c14aa768a3ab299ae0c678201a8c65</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(examples): migrate renderers to return RenderResult and add</title>
<updated>2026-07-11T07:21:40+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-11T07:15:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=95815041fe2817b4b6bdba6b4f332c90320af7bb'/>
<id>95815041fe2817b4b6bdba6b4f332c90320af7bb</id>
<content type='text'>
std::io::Write import

Replace r_println!/r_print! macro usage across all example renderers
with
explicit RenderResult construction using std::io::Write, enabling more
flexible output handling and reducing reliance on macro-side effects.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
std::io::Write import

Replace r_println!/r_print! macro usage across all example renderers
with
explicit RenderResult construction using std::io::Write, enabling more
flexible output handling and reducing reliance on macro-side effects.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(docs): correct RenderResult usage examples to use mut binding and</title>
<updated>2026-07-11T07:00:44+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-11T07:00:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=356879cfd6149bdb235b4e02c0f351a4d2246202'/>
<id>356879cfd6149bdb235b4e02c0f351a4d2246202</id>
<content type='text'>
add Write import
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
add Write import
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(renderer): add new() constructor to RenderResult</title>
<updated>2026-07-11T06:48:59+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-11T06:48:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=7fb5230f9c9e4ad095566f971b3bc5b3d87b1926'/>
<id>7fb5230f9c9e4ad095566f971b3bc5b3d87b1926</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: require renderers to return RenderResult instead of mutating one</title>
<updated>2026-07-11T06:44:17+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-07-11T06:44:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=c5736152b0adeef17349265c4b9277ba17b8bcfd'/>
<id>c5736152b0adeef17349265c4b9277ba17b8bcfd</id>
<content type='text'>
BREAKING CHANGE: The `render` method on `Renderer`, `HelpRequest`, and
`ProgramCollect` now returns `RenderResult` instead of taking
`&amp;mut RenderResult`. The `r_print!` and `r_println!` macros have been
removed in favor of using `std::io::Write` directly on `RenderResult`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BREAKING CHANGE: The `render` method on `Renderer`, `HelpRequest`, and
`ProgramCollect` now returns `RenderResult` instead of taking
`&amp;mut RenderResult`. The `r_print!` and `r_println!` macros have been
removed in favor of using `std::io::Write` directly on `RenderResult`.
</pre>
</div>
</content>
</entry>
</feed>
