summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernát Gábor <gaborjbernat@gmail.com>2021-10-23 12:34:50 +0100
committerBernát Gábor <gaborjbernat@gmail.com>2021-10-23 12:35:05 +0100
commit653d4ebcaae635183e95fba40a8bf3592ec3647e (patch)
treee3c6dac939690bc0dccf84838a2428a96fdfca22
parenta13e51e69080a5a5a5a15630f4a0f7b3d97d1c9a (diff)
downloadvirtualenv-653d4ebcaae635183e95fba40a8bf3592ec3647e.tar.gz
Fix docs
Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
-rw-r--r--docs/changelog.rst17
-rw-r--r--docs/changelog/2182.bugfix.txt2
-rw-r--r--docs/changelog/2205.bugfix.rst2
-rw-r--r--docs/changelog/2218.misc.rst1
-rw-r--r--docs/changelog/2220.feature.rst1
-rw-r--r--docs/changelog/2221.bugfix.rst1
-rw-r--r--docs/conf.py3
-rw-r--r--setup.cfg2
8 files changed, 20 insertions, 9 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 5b34b71..b81bd98 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -5,6 +5,23 @@ Release History
.. towncrier release notes start
+v20.9.0 (2021-10-23)
+--------------------
+
+Features - 20.9.0
+~~~~~~~~~~~~~~~~~
+- Special-case ``--prompt .`` to the name of the current directory - by :user:`rkm`. (`#2220 <https://github.com/pypa/virtualenv/issues/2220>`_)
+- Add libffi-8.dll to pypy windows `#2218 <https://github.com/pypa/virtualenv/issues/2218>`_ - by :user:`mattip`
+
+Bugfixes - 20.9.0
+~~~~~~~~~~~~~~~~~
+- Fixed path collision that could lead to a PermissionError or writing to system
+ directories when using PyPy3.8 - by :user:`mgorny`. (`#2182 <https://github.com/pypa/virtualenv/issues/2182>`_)
+- Upgrade embedded setuptools to ``58.3.0`` from ``58.1.0`` and pip to ``21.3.1`` from ``21.2.4`` - by
+ :user:`gaborbernat`. (`#2205 <https://github.com/pypa/virtualenv/issues/2205>`_)
+- Remove stray closing parenthesis in activate.bat - by :user:`SiggyBar`. (`#2221 <https://github.com/pypa/virtualenv/issues/2221>`_)
+
+
v20.8.1 (2021-09-24)
--------------------
diff --git a/docs/changelog/2182.bugfix.txt b/docs/changelog/2182.bugfix.txt
deleted file mode 100644
index 0f26a20..0000000
--- a/docs/changelog/2182.bugfix.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-Fixed path collision that could lead to a PermissionError or writing to system
-directories when using PyPy3.8 - by :user:`mgorny`.
diff --git a/docs/changelog/2205.bugfix.rst b/docs/changelog/2205.bugfix.rst
deleted file mode 100644
index 2b4b104..0000000
--- a/docs/changelog/2205.bugfix.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Upgrade embedded setuptools to ``58.3.0`` from ``58.1.0`` and pip to ``21.3.1`` from ``21.2.4`` - by
-:user:`gaborbernat`.
diff --git a/docs/changelog/2218.misc.rst b/docs/changelog/2218.misc.rst
deleted file mode 100644
index 25298cb..0000000
--- a/docs/changelog/2218.misc.rst
+++ /dev/null
@@ -1 +0,0 @@
-add libffi-8.dll to the hard-coded list of dlls for PyPy on Windows
diff --git a/docs/changelog/2220.feature.rst b/docs/changelog/2220.feature.rst
deleted file mode 100644
index 2bdc768..0000000
--- a/docs/changelog/2220.feature.rst
+++ /dev/null
@@ -1 +0,0 @@
-Special-case ``--prompt .`` to the name of the current directory - by :user:`rkm`.
diff --git a/docs/changelog/2221.bugfix.rst b/docs/changelog/2221.bugfix.rst
deleted file mode 100644
index ff7580f..0000000
--- a/docs/changelog/2221.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-Remove stray closing parenthesis in activate.bat - by :user:`SiggyBar`.
diff --git a/docs/conf.py b/docs/conf.py
index 920d300..b981af1 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -64,7 +64,8 @@ def generate_draft_news():
cwd=root,
universal_newlines=True,
)
- (root / "docs" / "_draft.rst").write_text("" if "No significant changes" in new else new)
+ dest = root / "docs" / "_draft.rst"
+ dest.write_text("" if "No significant changes" in new else new)
generate_draft_news()
diff --git a/setup.cfg b/setup.cfg
index c4233d0..06858ad 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -91,7 +91,7 @@ docs =
sphinx>=3
sphinx-argparse>=0.2.5
sphinx-rtd-theme>=0.4.3
- towncrier>=19.9.0rc1
+ towncrier>=21.3
testing =
coverage>=4
coverage_enable_subprocess>=1