diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b996af4859..07438c7fad 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,36 @@ +2023.2.18 (2023-02-18) +====================== +Pipenv 2023.2.18 (2023-02-18) +============================= + + +Features & Improvements +----------------------- + +- ``pipenv`` now reads the system ``pip.conf`` or ``pip.ini`` file in order to determine pre-defined indexes to use for package resolution and installation. `#5297 `_ +- Behavior change for ``pipenv check`` now checks the default packages group of the lockfile. + Specifying ``--categories`` to override which categories to check against. + Pass ``--use-installed`` to get the prior behavior of checking the packages actually installed into the environment. `#5600 `_ + +Bug Fixes +--------- + +- Fix regression with detection of ``CI`` env variable being set to something other than a truthy value. `#5554 `_ +- Fix ``--categories`` argument inconsistency between requirements command and install/sync by allowing comma seperated values or spaces. `#5570 `_ +- Use Nushell overlays when running ``pipenv shell``. `#5603 `_ + +Vendored Libraries +------------------ + +- Vendor in the ``pip==23.0`` release. `#5586 `_ +- Vendor in ``pip==23.0.1`` minor pt release. Updates ``pythonfinder==1.3.2``. `#5614 `_ + +Improved Documentation +---------------------- + +- Make some improvements to the contributing guide. `#5611 `_ + + 2023.2.4 (2023-02-04) ===================== Pipenv 2023.2.4 (2023-02-04) diff --git a/news/5297.feature.rst b/news/5297.feature.rst deleted file mode 100644 index 7a249a407a..0000000000 --- a/news/5297.feature.rst +++ /dev/null @@ -1 +0,0 @@ -``pipenv`` now reads the system ``pip.conf`` or ``pip.ini`` file in order to determine pre-defined indexes to use for package resolution and installation. diff --git a/news/5554.bugfix.rst b/news/5554.bugfix.rst deleted file mode 100644 index 1d2e3b0706..0000000000 --- a/news/5554.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix regression with detection of ``CI`` env variable being set to something other than a truthy value. diff --git a/news/5570.bugfix.rst b/news/5570.bugfix.rst deleted file mode 100644 index 5db7dc2419..0000000000 --- a/news/5570.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix ``--categories`` argument inconsistency between requirements command and install/sync by allowing comma seperated values or spaces. diff --git a/news/5586.vendor.rst b/news/5586.vendor.rst deleted file mode 100644 index 9452b4f392..0000000000 --- a/news/5586.vendor.rst +++ /dev/null @@ -1 +0,0 @@ -Vendor in the ``pip==23.0`` release. diff --git a/news/5600.feature.rst b/news/5600.feature.rst deleted file mode 100644 index 4dfd108518..0000000000 --- a/news/5600.feature.rst +++ /dev/null @@ -1,3 +0,0 @@ -Behavior change for ``pipenv check`` now checks the default packages group of the lockfile. -Specifying ``--categories`` to override which categories to check against. -Pass ``--use-installed`` to get the prior behavior of checking the packages actually installed into the environment. diff --git a/news/5603.bugfix.rst b/news/5603.bugfix.rst deleted file mode 100644 index e7c9607af8..0000000000 --- a/news/5603.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Use Nushell overlays when running ``pipenv shell``. diff --git a/news/5611.doc.rst b/news/5611.doc.rst deleted file mode 100644 index 9ed4ac485e..0000000000 --- a/news/5611.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Make some improvements to the contributing guide. diff --git a/news/5614.vendor.rst b/news/5614.vendor.rst deleted file mode 100644 index 7ab9c5adb0..0000000000 --- a/news/5614.vendor.rst +++ /dev/null @@ -1 +0,0 @@ -Vendor in ``pip==23.0.1`` minor pt release. Updates ``pythonfinder==1.3.2``. diff --git a/pipenv/__version__.py b/pipenv/__version__.py index 6c1e9fdac5..30a7ebbf58 100644 --- a/pipenv/__version__.py +++ b/pipenv/__version__.py @@ -2,4 +2,4 @@ # // ) ) / / // ) ) //___) ) // ) ) || / / # //___/ / / / //___/ / // // / / || / / # // / / // ((____ // / / ||/ / -__version__ = "2023.2.5.dev0" +__version__ = "2023.2.18" diff --git a/pipenv/pipenv.1 b/pipenv/pipenv.1 index 17611d575d..4222b1a2f7 100644 --- a/pipenv/pipenv.1 +++ b/pipenv/pipenv.1 @@ -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" "Dec 19, 2022" "2022.12.19" "pipenv" +.TH "PIPENV" "1" "Feb 18, 2023" "2023.2.18" "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\&.