Skip to content

Commit

Permalink
Release v2020.11.4
Browse files Browse the repository at this point in the history
  • Loading branch information
frostming committed Nov 4, 2020
1 parent 98d8e33 commit 642f084
Show file tree
Hide file tree
Showing 24 changed files with 215 additions and 44 deletions.
39 changes: 39 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,42 @@
2020.11.4 (2020-11-04)
======================

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

- Add a new command ``pipenv scripts`` to display shortcuts from Pipfile. `#3686 <https://github.com/pypa/pipenv/issues/3686>`_
- Retrieve package file hash from URL to accelerate the locking process. `#3827 <https://github.com/pypa/pipenv/issues/3827>`_
- Add the missing ``--system`` option to ``pipenv sync``. `#4441 <https://github.com/pypa/pipenv/issues/4441>`_
- Add a new option pair ``--header/--no-header`` to ``pipenv lock`` command,
which adds a header to the generated requirements.txt `#4443 <https://github.com/pypa/pipenv/issues/4443>`_

Bug Fixes
---------

- Fix a bug that percent encoded characters will be unquoted incorrectly in the file URL. `#4089 <https://github.com/pypa/pipenv/issues/4089>`_
- Fix a bug where setting PIPENV_PYTHON to file path breaks environment name `#4225 <https://github.com/pypa/pipenv/issues/4225>`_
- Fix a bug that paths are not normalized before comparison. `#4330 <https://github.com/pypa/pipenv/issues/4330>`_
- Handle Python major and minor versions correctly in Pipfile creation. `#4379 <https://github.com/pypa/pipenv/issues/4379>`_
- Fix a bug that non-wheel file requirements can be resolved successfully. `#4386 <https://github.com/pypa/pipenv/issues/4386>`_
- Fix a bug that ``pexept.exceptions.TIMEOUT`` is not caught correctly because of the wrong import path. `#4424 <https://github.com/pypa/pipenv/issues/4424>`_
- Fix a bug that compound TOML table is not parsed correctly. `#4433 <https://github.com/pypa/pipenv/issues/4433>`_
- Fix a bug that invalid Python paths from Windows registry break ``pipenv install``. `#4436 <https://github.com/pypa/pipenv/issues/4436>`_
- Fix a bug that function calls in ``setup.py`` can't be parsed rightly. `#4446 <https://github.com/pypa/pipenv/issues/4446>`_
- Fix a bug that dist-info inside ``venv`` directory will be mistaken as the editable package's metadata. `#4480 <https://github.com/pypa/pipenv/issues/4480>`_
- Make the order of hashes in resolution result stable. `#4513 <https://github.com/pypa/pipenv/issues/4513>`_

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

- Update ``tomlkit`` from ``0.5.11`` to ``0.7.0``. `#4433 <https://github.com/pypa/pipenv/issues/4433>`_
- Update ``requirementslib`` from ``1.5.13`` to ``1.5.14``. `#4480 <https://github.com/pypa/pipenv/issues/4480>`_

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

- Discourage homebrew installation in installation guides. `#4013 <https://github.com/pypa/pipenv/issues/4013>`_


2020.8.13 (2020-08-13)
======================

Expand Down
1 change: 0 additions & 1 deletion news/3630.trivial.rst

This file was deleted.

2 changes: 0 additions & 2 deletions news/3686.feature.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

2 changes: 0 additions & 2 deletions news/4443.feature.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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__ = "2020.8.13.dev0"
__version__ = "2020.11.4"
Loading

0 comments on commit 642f084

Please sign in to comment.