Skip to content

Commit

Permalink
doc(changelog): remove UTF symbols from pyproject.toml
Browse files Browse the repository at this point in the history
The reason is that `pyproject.toml` is read in many contexts. These
symbols are niceties that nevertheless impact platform compatibility.
Reading the file with the default platform encoding on windows
(`cp1252`) fails, because these symbols cannot be mapped.

Software should be able to handle UTF, but we cannot afford to make a
point in this crucial file.
  • Loading branch information
mih committed Jun 6, 2024
1 parent 600c838 commit 78e2aaa
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,10 @@ schema_pattern = "(?s)(ci|doc|feat|fix|perf|rf|style|test|chore|revert|bump)(\\(
"^fix" = "PATCH"

[tool.commitizen.customize.change_type_map]
"BREAKING CHANGE" = "🪓 Breaking changes"
doc = "📝 Documentation"
feat = "💫 New features"
fix = "🐛 Bug Fixes"
test = "🛡 Tests"
rf = "🏠 Refactorings"
perf = "🚀 Performance improvements"
"BREAKING CHANGE" = "Breaking changes"
doc = "Documentation"
feat = "New features"
fix = "Bug Fixes"
test = "Tests"
rf = "Refactorings"
perf = "Performance improvements"

0 comments on commit 78e2aaa

Please sign in to comment.