summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2020-09-17 09:08:15 +0200
committerGeorg Brandl <georg@python.org>2020-09-17 09:08:15 +0200
commitb79e6891d09e1f3d9d069fdb61eb76a091e47615 (patch)
treed3620b53ec801836462ba64a467ba255e0f4455a
parent4587a7e80145d79ef49de1c15ca58a1a13cc9987 (diff)
downloadpygments-git-b79e6891d09e1f3d9d069fdb61eb76a091e47615.tar.gz
Update changelog, make "make clean" clean more things
-rw-r--r--CHANGES5
-rw-r--r--Makefile6
2 files changed, 7 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 7ea6fae8..657e3221 100644
--- a/CHANGES
+++ b/CHANGES
@@ -7,6 +7,11 @@ pull request numbers to the requests at
<https://github.com/pygments/pygments/pulls>.
+Version 2.8.0
+-------------
+(not released yet)
+
+
Version 2.7.1
-------------
(released September 16, 2020)
diff --git a/Makefile b/Makefile
index 7de5f87a..e4625bcf 100644
--- a/Makefile
+++ b/Makefile
@@ -25,13 +25,11 @@ check:
-i docs/build -i pygments/formatters/_mapping.py -i pygments/unistring.py
clean: clean-pyc
- -rm -rf build tests/examplefiles/output
+ -rm -rf doc/_build build Pygments.egg-info tests/examplefiles/output
-rm -f codetags.html
clean-pyc:
- find . -name '*.pyc' -exec rm -f {} +
- find . -name '*.pyo' -exec rm -f {} +
- find . -name '*~' -exec rm -f {} +
+ find . -name '__pycache__' -exec rm -rf {} +
codetags:
@$(PYTHON) scripts/find_codetags.py -i tests/examplefiles -i scripts/pylintrc \