diff options
| author | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-07-26 09:32:39 -0500 |
|---|---|---|
| committer | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-07-26 09:37:32 -0500 |
| commit | df2fa18a0865a202e91fcc0d8ca4a49b402baed3 (patch) | |
| tree | 36c7d02c27ff1e5a236c6de238a7c6447eb0cdc9 /docs/source | |
| parent | f82b5d62d0c4e48b95466bb259f3401aecf28de7 (diff) | |
| download | flake8-df2fa18a0865a202e91fcc0d8ca4a49b402baed3.tar.gz | |
Fix project config file discovery
Flake8 3.0 was stopping once it found the current directory but the
historical behaviour (that we didn't intend to break) searched past
that (towards root) until it found one of the project/local config
file names that could be read.
Closes #181
Diffstat (limited to 'docs/source')
| -rw-r--r-- | docs/source/release-notes/3.0.1.rst | 4 | ||||
| -rw-r--r-- | docs/source/release-notes/3.0.2.rst | 9 | ||||
| -rw-r--r-- | docs/source/release-notes/index.rst | 1 |
3 files changed, 12 insertions, 2 deletions
diff --git a/docs/source/release-notes/3.0.1.rst b/docs/source/release-notes/3.0.1.rst index 0092dc8..20f6783 100644 --- a/docs/source/release-notes/3.0.1.rst +++ b/docs/source/release-notes/3.0.1.rst @@ -1,5 +1,5 @@ -3.0.1 -- 2016-07-25 -------------------- +3.0.1 -- 2016-07-25 (unreleased) +-------------------------------- - Fix regression in handling of ``# noqa`` for multiline strings. (See also `GitLab#177`_) diff --git a/docs/source/release-notes/3.0.2.rst b/docs/source/release-notes/3.0.2.rst new file mode 100644 index 0000000..8605ce9 --- /dev/null +++ b/docs/source/release-notes/3.0.2.rst @@ -0,0 +1,9 @@ +3.0.2 -- 2016-07-26 +------------------- + +- Fix local config file discovery. (See also `GitLab#181`_) + + +.. links +.. _GitLab#181: + https://gitlab.com/pycqa/flake8/issues/181 diff --git a/docs/source/release-notes/index.rst b/docs/source/release-notes/index.rst index 8056b76..440079b 100644 --- a/docs/source/release-notes/index.rst +++ b/docs/source/release-notes/index.rst @@ -6,6 +6,7 @@ All of the release notes that have been recorded for Flake8 are organized here with the newest releases first. .. toctree:: + 3.0.2 3.0.1 3.0.0 2.6.2 |
