Skip to content

Commit

Permalink
Release v2022.12.17
Browse files Browse the repository at this point in the history
  • Loading branch information
matteius committed Dec 17, 2022
1 parent fe43762 commit 56f2dc4
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 14 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
2022.12.17 (2022-12-17)
=======================
Pipenv 2022.12.17 (2022-12-17)
==============================


Bug Fixes
---------

- virtualenv creation no longer uses ``--creator=venv`` by default; introduced two environment variables:
``PIPENV_VIRTUALENV_CREATOR`` -- May be specified to instruct virtualenv which ``--creator=`` to use.
``PIPENV_VIRTUALENV_COPIES`` -- When specified as truthy, instructs virtualenv to not use symlinks. `#5477 <https://github.com/pypa/pipenv/issues/5477>`_
- Fix regression where ``path`` is not propagated to the ``Pipfile.lock``. `#5479 <https://github.com/pypa/pipenv/issues/5479>`_
- Solve issue where null markers were getting added to lock file when extras were provided. `#5486 <https://github.com/pypa/pipenv/issues/5486>`_
- Fix: ``update --outdated`` raises NonExistentKey with outdated dev packages `#5540 <https://github.com/pypa/pipenv/issues/5540>`_

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

- Vendor in ``pip==22.3.1`` which is currently the latest version of ``pip``. `#5520 <https://github.com/pypa/pipenv/issues/5520>`_
- * Bump version of requirementslib to 2.2.1
* Bump version of vistir to 0.7.5
* Bump version of colorama to 0.4.6 `#5522 <https://github.com/pypa/pipenv/issues/5522>`_
- Bump plette version to 0.4.4 `#5539 <https://github.com/pypa/pipenv/issues/5539>`_


2022.11.30 (2022-11-30)
=======================
Pipenv 2022.11.30 (2022-11-30)
Expand Down
3 changes: 0 additions & 3 deletions news/5477.bugfix.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

3 changes: 0 additions & 3 deletions news/5522.vendor.rst

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion news/5540.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__ = "2022.11.1.dev0"
__version__ = "2022.12.17"
4 changes: 2 additions & 2 deletions pipenv/pipenv.1
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
..
.TH "PIPENV" "1" "Nov 30, 2022" "2022.11.30" "pipenv"
.TH "PIPENV" "1" "Dec 17, 2022" "2022.12.17" "pipenv"
.sp
Pipenv uses a set of commands to manage your Project\(aqs dependencies and custom scripts.
It replaces the use of \fBMakefile\fP, direct calls to \fBpip\fP and \fBpython \-m venv\fP or \fBvirtualenv\fP\&.
Expand All @@ -50,7 +50,7 @@ to \fBPipfile\fP and \fBPipfile.lock\fP
.IP \(bu 2
\fBuninstall\fP \- Will remove the dependency
.IP \(bu 2
\fBlock\fP \- Regenarate \fBPipfile.lock\fP and updates the dependencies inside it.
\fBlock\fP \- Regenerate \fBPipfile.lock\fP and updates the dependencies inside it.
.UNINDENT
.sp
These are intended to replace \fB$ pip install\fP usage, as well as manual virtualenv management.
Expand Down

0 comments on commit 56f2dc4

Please sign in to comment.