From f62e3f339721ea45dee715f3281abfe1b024d3b8 Mon Sep 17 00:00:00 2001 From: Aoran Zeng Date: Wed, 16 Jul 2025 23:10:52 +0800 Subject: [PATCH] Bump up `rawstr4c` version to `v0.2.1.0` --- tool/rawstr4c/lib/Parser.rakumod | 4 ++-- tool/rawstr4c/lib/Version.rakumod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tool/rawstr4c/lib/Parser.rakumod b/tool/rawstr4c/lib/Parser.rakumod index bac0197..3747aab 100644 --- a/tool/rawstr4c/lib/Parser.rakumod +++ b/tool/rawstr4c/lib/Parser.rakumod @@ -303,8 +303,8 @@ class Parser { say "====== Sections ======"; for @!sections.kv -> $i, $section { my $title = $section.title || "(Root)"; - my $has-config = $section.configblock.keys ?? "有配置" !! "无配置"; - my $has-code = $section.codeblock ?? "有代码" !! "无代码"; + my $has-config = $section.configblock.keys ?? "[Has Config]" !! "[NO Config]"; + my $has-code = $section.codeblock ?? "[Has Code]" !! "[NO Code]"; say " [$i] Level {$section.level}: $title - $has-config, $has-code"; } } diff --git a/tool/rawstr4c/lib/Version.rakumod b/tool/rawstr4c/lib/Version.rakumod index 6e59837..333a2fd 100644 --- a/tool/rawstr4c/lib/Version.rakumod +++ b/tool/rawstr4c/lib/Version.rakumod @@ -10,7 +10,7 @@ unit module Version; -constant VERSION = "0.2.0.0"; +constant VERSION = "0.2.1.0"; constant RELEASE_DATE = "2025/07/16"; constant Maintain_URL = "https://github.com/RubyMetric/chsrc/blob/dev/tool/rawstr4c";