Skip to content

Commit 6a3c04f

Browse files
committed
fix(cliff): Fix TOML parse errors in cliff.toml
Fixed unescaped backticks causing TOML parse errors: Errors found: - Line 68: `config.ini` -> 'config.ini' - Line 40: `RainingKeysPython.zip` -> 'RainingKeysPython.zip' - Line 41: `RainingKeysPython-debug.zip` -> 'RainingKeysPython-debug.zip' TOML parsing rules: - Backticks ` need to be escaped in TOML - Single quotes ' don't need escaping in multiline strings - Double quotes " don't need escaping in multiline strings - Replace: ` -> ' or \` for backticks Changes: 1. Line 40: Changed file path backticks to single quotes 2. Line 41: Changed file path backticks to single quotes 3. Line 68: Changed config file backticks to single quotes This should resolve 'missing escaped value' errors in cliff.toml.
1 parent 57a0ab6 commit 6a3c04f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cliff.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ footer = """
3737
## [{{ version }}] - Release Notes
3838
3939
### 📦 Downloads
40-
- `RainingKeysPython.zip` - Release build (no console)
41-
- `RainingKeysPython-debug.zip` - Debug build (with console)
40+
- 'RainingKeysPython.zip' - Release build (no console)
41+
- 'RainingKeysPython-debug.zip' - Debug build (with console)
4242
4343
### 📚 Documentation
4444
- [GitHub Repository](https://github.com/ianaw/RainingKeysPython)
@@ -65,7 +65,7 @@ footer = """
6565
## Migration Guide
6666
6767
### For Users
68-
No breaking changes in this release. Your \`config.ini\` will continue to work.
68+
No breaking changes in this release. Your 'config.ini' will continue to work.
6969
7070
### For Developers
7171
- Git-cliff now used for changelog generation

0 commit comments

Comments
 (0)