Skip to content

Commit f758675

Browse files
committed
docs(qc): update README.md addressing version inconsistencies and run
HORNERs qc (fmt, fix, audit) - Updated the README.md to resolve version inconsistencies. - Executed HORNERs qc with fmt, fix, and audit options to ensure code quality.
1 parent 260393c commit f758675

File tree

6 files changed

+225
-239
lines changed

6 files changed

+225
-239
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<!-- Version notice -->
99
<p style="font-style: italic; color: #ccc; margin-top: 0.5em;">
10-
You are reading documentation version <span id="doc-version" style="color: white;">0.2.0</span>.
10+
You are reading documentation version <span id="doc-version" style="color: white;">0.2.2</span>.
1111
If this does not match the version displayed above, then you're not reading the latest documentation!
1212
</p>
1313

@@ -80,7 +80,7 @@ Options:
8080
- If declined, GPT is used iteratively to refine the prompt until an acceptable commit message is produced.
8181

8282
_The iterative refinement and nice initial prompts are TBD (To Be Developed). What you get now might not be as good as `giff diff --cached | (clip|pbcopy)` taken straight to consumer
83-
ChatGPT interface. This is v0.2.1; expect simple._
83+
ChatGPT interface. This is v0.2.2; expect simple._
8484

8585
## Output Logs
8686

@@ -144,6 +144,6 @@ This project is licensed under the MIT License. See the [LICENSE](LICENSE) file
144144

145145
<!-- Version notice -->
146146
<p style="font-style: italic; color: #ccc; margin-top: 0.5em;">
147-
You are reading documentation version <span id="doc-version" style="color: white;">0.2.0</span>.
147+
You are reading documentation version <span id="doc-version" style="color: white;">0.2.2</span>.
148148
If this does not match the version displayed above, then you're not reading the latest documentation!
149149
</p>

src/changelog.rs

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,7 @@ pub const TYPES: &[&str] = &[
1212
];
1313

1414
/// Allowed scopes (e.g., modules or subsystems).
15-
pub const SCOPES: &[&str] = &[
16-
"core",
17-
"ui",
18-
"api",
19-
"build",
20-
"docs",
21-
"tests",
22-
];
15+
pub const SCOPES: &[&str] = &["core", "ui", "api", "build", "docs", "tests"];
2316

2417
/// Marker that indicates a breaking change in the commit message footer.
2518
pub const BREAKING_CHANGE_MARKER: &str = "!";
@@ -53,4 +46,3 @@ mod tests {
5346
assert_eq!(changelog.breaking_marker, "!");
5447
}
5548
}
56-

0 commit comments

Comments
 (0)