Skip to content

Commit

Permalink
Release v2021.11.5
Browse files Browse the repository at this point in the history
  • Loading branch information
frostming committed Nov 5, 2021
1 parent 5c7435a commit 2da61b0
Show file tree
Hide file tree
Showing 17 changed files with 233 additions and 1,303 deletions.
64 changes: 64 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,67 @@
2021.11.5 (2021-11-05)
======================


Features & Improvements
-----------------------

- Avoid sharing states but create project objects on demand. So that most integration test cases are able to switch to a in-process execution method. `#4757 <https://github.com/pypa/pipenv/issues/4757>`_
- Shell-quote ``pip`` commands when logging. `#4760 <https://github.com/pypa/pipenv/issues/4760>`_

Bug Fixes
---------

- Ignore empty .venv in rood dir and create project name base virtual environment `#4790 <https://github.com/pypa/pipenv/issues/4790>`_

Vendored Libraries
------------------

- Update vendored dependencies
- ``attrs`` from ``20.3.0`` to ``21.2.0``
- ``cerberus`` from ``1.3.2`` to ``1.3.4``
- ``certifi`` from ``2020.11.8`` to ``2021.5.30``
- ``chardet`` from ``3.0.4`` to ``4.0.0``
- ``click`` from ``7.1.2`` to ``8.0.1``
- ``distlib`` from ``0.3.1`` to ``0.3.2``
- ``idna`` from ``2.10`` to ``3.2``
- ``importlib-metadata`` from ``2.0.0`` to ``4.6.1``
- ``importlib-resources`` from ``3.3.0`` to ``5.2.0``
- ``jinja2`` from ``2.11.2`` to ``3.0.1``
- ``markupsafe`` from ``1.1.1`` to ``2.0.1``
- ``more-itertools`` from ``5.0.0`` to ``8.8.0``
- ``packaging`` from ``20.8`` to ``21.0``
- ``pep517`` from ``0.9.1`` to ``0.11.0``
- ``pipdeptree`` from ``1.0.0`` to ``2.0.0``
- ``ptyprocess`` from ``0.6.0`` to ``0.7.0``
- ``python-dateutil`` from ``2.8.1`` to ``2.8.2``
- ``python-dotenv`` from ``0.15.0`` to ``0.19.0``
- ``pythonfinder`` from ``1.2.5`` to ``1.2.8``
- ``requests`` from ``2.25.0`` to ``2.26.0``
- ``shellingham`` from ``1.3.2`` to ``1.4.0``
- ``six`` from ``1.15.0`` to ``1.16.0``
- ``tomlkit`` from ``0.7.0`` to ``0.7.2``
- ``urllib3`` from ``1.26.1`` to ``1.26.6``
- ``zipp`` from ``1.2.0`` to ``3.5.0``

Add new vendored dependencies
- ``charset-normalizer 2.0.3``
- ``termcolor 1.1.0``
- ``tomli 1.1.0``
- ``wheel 0.36.2`` `#4747 <https://github.com/pypa/pipenv/issues/4747>`_
- Drop the dependencies for Python 2.7 compatibility purpose. `#4751 <https://github.com/pypa/pipenv/issues/4751>`_
- Switch the dependency resolver from ``pip-tools`` to `pip`.

Update vendor libraries:
- Update ``requirementslib`` from ``1.5.16`` to ``1.6.1``
- Update ``pip-shims`` from ``0.5.6`` to ``0.6.0``
- New vendor ``platformdirs 2.4.0`` `#4759 <https://github.com/pypa/pipenv/issues/4759>`_

Improved Documentation
----------------------

- remove prefixes on install commands for easy copy/pasting `#4792 <https://github.com/pypa/pipenv/issues/4792>`_


2021.5.29 (2021-05-29)
======================

Expand Down
6 changes: 3 additions & 3 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
'sphinx.ext.coverage',
'sphinx.ext.viewcode',
'sphinx_click.ext',
'sphinxcontrib.spelling',
]

# Add any paths that contain templates here, relative to this directory.
Expand Down Expand Up @@ -86,9 +85,6 @@
# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = True

spelling_word_list_filename = "spelling_wordlist.txt"
spelling_show_suggestions = True

# -- Options for HTML output ----------------------------------------------

# The theme to use for HTML and HTML Help pages. See the documentation for
Expand Down
2 changes: 1 addition & 1 deletion docs/diagnose.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Add this line under ``[supervisord]`` section in ``/etc/supervisor/supervisord.c
environment=LC_ALL='en_US.UTF-8',LANG='en_US.UTF-8'

☤ An exception is raised during ``Locking dependencies...``
---------------------------------------------------------
-----------------------------------------------------------

Run ``pipenv lock --clear`` and try again. The lock sequence caches results
to speed up subsequent runs. The cache may contain faulty results if a bug
Expand Down
32 changes: 0 additions & 32 deletions news/4747.vendor.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/4751.vendor.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/4757.feature.rst

This file was deleted.

6 changes: 0 additions & 6 deletions news/4759.vendor.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/4760.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/4790.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/4792.doc.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/4813.trivial.rst

This file was deleted.

11 changes: 11 additions & 0 deletions news/towncrier_template.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
{% if top_line %}
{{ top_line }}
{{ top_underline * ((top_line)|length)}}
{% elif versiondata.name %}
{{ versiondata.name }} {{ versiondata.version }} ({{ versiondata.date }})
{{ top_underline * ((versiondata.name + versiondata.version + versiondata.date)|length + 4)}}
{% else %}
{{ versiondata.version }} ({{ versiondata.date }})
{{ top_underline * ((versiondata.version + versiondata.date)|length + 3)}}
{% endif %}

{% for section in sections %}
{% set underline = "-" %}
{% if section %}
Expand Down
2 changes: 1 addition & 1 deletion pipenv/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# // ) ) / / // ) ) //___) ) // ) ) || / /
# //___/ / / / //___/ / // // / / || / /
# // / / // ((____ // / / ||/ /
__version__ = "2021.5.30dev"
__version__ = "2021.11.5"
Loading

0 comments on commit 2da61b0

Please sign in to comment.