summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2020-06-08 12:27:04 -0700
committerAnthony Sottile <asottile@umich.edu>2020-06-08 12:27:04 -0700
commit181bb46098dddf7e2d45319ea654b4b4d58c2840 (patch)
tree9e479c45f646ef8cc2149cb988667bf08e738cbe
parent3d68da9e8ee7b22ab8f516ed393ff01a90001d22 (diff)
downloadflake8-3.8.3.tar.gz
Release 3.8.33.8.3
-rw-r--r--docs/source/release-notes/3.8.3.rst29
-rw-r--r--docs/source/release-notes/index.rst1
-rw-r--r--src/flake8/__init__.py2
3 files changed, 31 insertions, 1 deletions
diff --git a/docs/source/release-notes/3.8.3.rst b/docs/source/release-notes/3.8.3.rst
new file mode 100644
index 0000000..d2d071b
--- /dev/null
+++ b/docs/source/release-notes/3.8.3.rst
@@ -0,0 +1,29 @@
+3.8.3 -- 2020-06-08
+-------------------
+
+You can view the `3.8.3 milestone`_ on GitLab for more details.
+
+Bugs Fixed
+~~~~~~~~~~
+
+- Also catch ``SyntaxError`` when tokenizing (See also `GitLab!433`_,
+ `GitLab#662`_)
+
+- Fix ``--jobs`` default display in ``flake8 --help`` (See also `GitLab!434`_,
+ `GitLab#665`_)
+
+.. all links
+.. _3.8.3 milestone:
+ https://gitlab.com/pycqa/flake8/-/milestones/36
+
+.. issue links
+.. _GitLab#662:
+ https://gitlab.com/pycqa/flake8/issues/662
+.. _GitLab#665:
+ https://gitlab.com/pycqa/flake8/issues/665
+
+.. merge request links
+.. _GitLab!433:
+ https://gitlab.com/pycqa/flake8/merge_requests/433
+.. _GitLab!434:
+ https://gitlab.com/pycqa/flake8/merge_requests/434
diff --git a/docs/source/release-notes/index.rst b/docs/source/release-notes/index.rst
index 53cf726..c802a1e 100644
--- a/docs/source/release-notes/index.rst
+++ b/docs/source/release-notes/index.rst
@@ -9,6 +9,7 @@ with the newest releases first.
==================
.. toctree::
+ 3.8.3
3.8.2
3.8.1
3.8.0
diff --git a/src/flake8/__init__.py b/src/flake8/__init__.py
index 2300aa8..3362649 100644
--- a/src/flake8/__init__.py
+++ b/src/flake8/__init__.py
@@ -18,7 +18,7 @@ if False: # `typing.TYPE_CHECKING` was introduced in 3.5.2
LOG = logging.getLogger(__name__)
LOG.addHandler(logging.NullHandler())
-__version__ = "3.8.2"
+__version__ = "3.8.3"
__version_info__ = tuple(
int(i) for i in __version__.split(".") if i.isdigit()
)