From 78e2aaaad856d1991fb686827ee0bbaf327a4fa6 Mon Sep 17 00:00:00 2001 From: Michael Hanke Date: Thu, 6 Jun 2024 11:45:34 +0200 Subject: [PATCH] doc(changelog): remove UTF symbols from pyproject.toml 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. --- pyproject.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 82d5b64..0670c33 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"