diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a624ed3f2f..7e4d50d0dc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,29 @@ +2022.7.4 (2022-07-04) +===================== + + +Behavior Changes +---------------- + +- Adjust ``pipenv requirements`` to add markers and add an ``--exclude-markers`` option to allow the exclusion of markers. `#5092 `_ + +Bug Fixes +--------- + +- Stopped expanding environment variables when using ``pipenv requirements`` `#5134 `_ + +Vendored Libraries +------------------ + +- Depend on ``requests`` and ``certifi`` from vendored ``pip`` and remove them as explicit vendor dependencies. `#5000 `_ +- Vendor in the latest version of ``requirementslib==1.6.5`` which includes bug fixes for beta python versions, projects with an at sign (@) in the path, and a ``setuptools`` deprecation warning. `#5132 `_ + +Relates to dev process changes +------------------------------ + +- Switch from using type comments to type annotations. + + 2022.5.3.dev0 (2022-06-07) ========================== diff --git a/news/5000.vendor.rst b/news/5000.vendor.rst deleted file mode 100644 index f426ef8f6b..0000000000 --- a/news/5000.vendor.rst +++ /dev/null @@ -1 +0,0 @@ -Depend on ``requests`` and ``certifi`` from vendored ``pip`` and remove them as explicit vendor dependencies. diff --git a/news/5092.behavior.rst b/news/5092.behavior.rst deleted file mode 100644 index 8a783a931d..0000000000 --- a/news/5092.behavior.rst +++ /dev/null @@ -1 +0,0 @@ -Adjust ``pipenv requirements`` to add markers and add an ``--exclude-markers`` option to allow the exclusion of markers. diff --git a/news/5119.process.rst b/news/5119.process.rst deleted file mode 100644 index 37b16b1fe6..0000000000 --- a/news/5119.process.rst +++ /dev/null @@ -1 +0,0 @@ -Switch from using type comments to type annotations. diff --git a/news/5132.vendor.rst b/news/5132.vendor.rst deleted file mode 100644 index 7ec746abb1..0000000000 --- a/news/5132.vendor.rst +++ /dev/null @@ -1 +0,0 @@ -Vendor in the latest version of ``requirementslib==1.6.5`` which includes bug fixes for beta python versions, projects with an at sign (@) in the path, and a ``setuptools`` deprecation warning. diff --git a/news/5134.bugfix.rst b/news/5134.bugfix.rst deleted file mode 100644 index 65a90f3e6f..0000000000 --- a/news/5134.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Stopped expanding environment variables when using ``pipenv requirements`` diff --git a/pipenv/__version__.py b/pipenv/__version__.py index 2f6e232309..b266940f12 100644 --- a/pipenv/__version__.py +++ b/pipenv/__version__.py @@ -2,4 +2,4 @@ # // ) ) / / // ) ) //___) ) // ) ) || / / # //___/ / / / //___/ / // // / / || / / # // / / // ((____ // / / ||/ / -__version__ = "2022.6.8.dev0" +__version__ = "2022.7.4"