From 6473e659f0331f38bd7e6579d35f4d6a58bed6ba Mon Sep 17 00:00:00 2001 From: Chris White Date: Sun, 15 Sep 2024 16:23:35 -0400 Subject: [PATCH] .editorconfig files MUST be utf-8, not just SHOULD. Fixes editorconfig/editorconfig#497 --- conf.py | 4 ++-- index.rst | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/conf.py b/conf.py index 67c77b7..775f278 100644 --- a/conf.py +++ b/conf.py @@ -21,8 +21,8 @@ copyright = '2019--2024, EditorConfig Team' author = 'EditorConfig Team' -version = '0.16.0' -release = '0.16.0' +version = '0.17.0' +release = '0.17.0' # -- General configuration --------------------------------------------------- diff --git a/index.rst b/index.rst index 74f1120..be2e8f7 100644 --- a/index.rst +++ b/index.rst @@ -73,6 +73,8 @@ EditorConfig organization. File Format =========== +.. versionchanged:: 0.17.0 + EditorConfig files are in an INI-like file format. In an EditorConfig file, all beginning whitespace on each line is considered irrelevant. Each line must be one of the following: @@ -94,7 +96,7 @@ irrelevant. Each line must be one of the following: Any line that is not one of the above is invalid. -EditorConfig files should be UTF-8 encoded, with LF or CRLF line separators. +EditorConfig files must be UTF-8 encoded, with LF or CRLF line separators. No inline comments ------------------