diff --git a/.changelogs/v1.1.0.md b/.changelogs/v1.1.0.md new file mode 100644 index 0000000..8c8f2da --- /dev/null +++ b/.changelogs/v1.1.0.md @@ -0,0 +1,5 @@ +# Changelog + +## Bug-fixes + +* List values will be converted correctly from toml configuration file to ini-file. #1 diff --git a/.changelogs/v1.2.0.md b/.changelogs/v1.2.0.md new file mode 100644 index 0000000..08e76df --- /dev/null +++ b/.changelogs/v1.2.0.md @@ -0,0 +1,9 @@ +# Changelog + +## Bug-fixes + +* Flake8 reads relative paths relative from the path of the configuration file, not to the working directory. #3 + +## Hints for upgrading + +* Add `.flake518_*.cfg` to your git ignore files. diff --git a/.gitignore b/.gitignore index f95fc6b..f18ae98 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ dist __pycache__ __pypackages__ src/flake518.egg-info/ +.flake518_*.cfg diff --git a/Authors.md b/Authors.md new file mode 100644 index 0000000..8e1fa10 --- /dev/null +++ b/Authors.md @@ -0,0 +1,10 @@ +# Authors + +## Main authors + +* Carsten Igel (@carstencodes) + +## Contributors + +* Benjamin Eskola (@benjamineskola) + * Fixed #3 with #4 diff --git a/pyproject.toml b/pyproject.toml index 726ea60..8c001ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "flake518" -version = "1.1.0" +version = "1.2.0" description = "A small wrapper around flake8 to support PEP518 pyproject.toml as configuration file." authors = [ {name = "Carsten Igel", email = "cig@bite-that-bit.de"}, @@ -66,4 +66,4 @@ statistics=true show-source=true max-line-length=79 doctests=true -# exclude=[".git", "__pypackages__", ".vscode", ".mypy_cache"] +exclude=[".git", "__pypackages__", ".vscode", ".mypy_cache"]