From 237f04c127e6002e12f4e8e83b0c82ed299ab289 Mon Sep 17 00:00:00 2001 From: Carsten Igel <1760987+carstencodes@users.noreply.github.com> Date: Sat, 8 Jan 2022 17:07:03 +0100 Subject: [PATCH 1/6] Flake518 config files will be ignored in future --- .gitignore | 1 + 1 file changed, 1 insertion(+) 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 From f002758159f63c3ba1f81739b66dfcefda4dace9 Mon Sep 17 00:00:00 2001 From: Carsten Igel <1760987+carstencodes@users.noreply.github.com> Date: Sat, 8 Jan 2022 17:07:39 +0100 Subject: [PATCH 2/6] Re-enabled changes for files --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 726ea60..1937234 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"] From fe4edb260ed480a08696d825ac269dbea619ee12 Mon Sep 17 00:00:00 2001 From: Carsten Igel <1760987+carstencodes@users.noreply.github.com> Date: Sat, 8 Jan 2022 17:10:35 +0100 Subject: [PATCH 3/6] Added changelog for v1.1.0 --- .changelogs/v1.1.0.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changelogs/v1.1.0.md 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 From 036492b8bb064e57a3b257dd8772cc1a0392267e Mon Sep 17 00:00:00 2001 From: Carsten Igel <1760987+carstencodes@users.noreply.github.com> Date: Sat, 8 Jan 2022 17:13:06 +0100 Subject: [PATCH 4/6] Added changelog for version 1.2.0 --- .changelogs/v1.2.0.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .changelogs/v1.2.0.md 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. From f2bc28f5ee3a0c7869f3507346701edfc0a36f1b Mon Sep 17 00:00:00 2001 From: Carsten Igel <1760987+carstencodes@users.noreply.github.com> Date: Sat, 8 Jan 2022 17:15:35 +0100 Subject: [PATCH 5/6] Added Authors file --- Authors.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Authors.md 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 From 47cfa68f9a7a93c7e78a10e3a9c72a068cd567c3 Mon Sep 17 00:00:00 2001 From: Carsten Igel <1760987+carstencodes@users.noreply.github.com> Date: Sat, 8 Jan 2022 17:15:54 +0100 Subject: [PATCH 6/6] Updated pyproject.toml to version 1.2.0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1937234..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"},