diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7e4d50d0..763432b5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,28 @@ +2022.7.24 (2022-07-24) +====================== + + +Bug Fixes +--------- + +- Re-enabled three installs tests again on the Windows CI as recent refactor work has fixed them. `#5064 `_ +- Support ANSI ``NO_COLOR`` environment variable and deprecate ``PIPENV_COLORBLIND`` variable, which will be removed after this release. `#5158 `_ +- Fixed edge case where a non-editable file, url or vcs would overwrite the value ``no_deps`` for all other requirements in the loop causing a retry condition. `#5164 `_ +- Vendor in latest ``requirementslib`` for fix to lock when using editable VCS module with specific ``@`` git reference. `#5179 `_ + +Vendored Libraries +------------------ + +- Remove crayons and replace with click.secho and click.styles per https://github.com/pypa/pipenv/issues/3741 `#3741 `_ +- Vendor in latest version of ``pip==22.1.2`` which upgrades ``pipenv`` from ``pip==22.0.4``. + Vendor in latest version of ``requirementslib==1.6.7`` which includes a fix for tracebacks on encountering Annotated variables. + Vendor in latest version of ``pip-shims==0.7.3`` such that imports could be rewritten to utilize ``packaging`` from vendor'd ``pip``. + Drop the ``packaging`` requirement from the ``vendor`` directory in ``pipenv``. `#5147 `_ +- Remove unused vendored dependency ``normailze-charset``. `#5161 `_ +- Remove obsolete package ``funcsigs``. `#5168 `_ +- Bump vendored dependency ``pyparsing==3.0.9``. `#5170 `_ + + 2022.7.4 (2022-07-04) ===================== diff --git a/news/3741.vendor.rst b/news/3741.vendor.rst deleted file mode 100644 index 474c3ec2..00000000 --- a/news/3741.vendor.rst +++ /dev/null @@ -1 +0,0 @@ -Remove crayons and replace with click.secho and click.styles per https://github.com/pypa/pipenv/issues/3741 diff --git a/news/5064.bugfix.rst b/news/5064.bugfix.rst deleted file mode 100644 index 1bb22cab..00000000 --- a/news/5064.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Re-enabled three installs tests again on the Windows CI as recent refactor work has fixed them. diff --git a/news/5147.vendor.rst b/news/5147.vendor.rst deleted file mode 100644 index ea5973a8..00000000 --- a/news/5147.vendor.rst +++ /dev/null @@ -1,4 +0,0 @@ -Vendor in latest version of ``pip==22.1.2`` which upgrades ``pipenv`` from ``pip==22.0.4``. -Vendor in latest version of ``requirementslib==1.6.7`` which includes a fix for tracebacks on encountering Annotated variables. -Vendor in latest version of ``pip-shims==0.7.3`` such that imports could be rewritten to utilize ``packaging`` from vendor'd ``pip``. -Drop the ``packaging`` requirement from the ``vendor`` directory in ``pipenv``. diff --git a/news/5158.bugfix.rst b/news/5158.bugfix.rst deleted file mode 100644 index cdee931d..00000000 --- a/news/5158.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Support ANSI ``NO_COLOR`` environment variable and deprecate ``PIPENV_COLORBLIND`` variable, which will be removed after this release. diff --git a/news/5161.vendor.rst b/news/5161.vendor.rst deleted file mode 100644 index 6b7ba874..00000000 --- a/news/5161.vendor.rst +++ /dev/null @@ -1 +0,0 @@ -Remove unused vendored dependency ``normailze-charset``. diff --git a/news/5164.bugfix.rst b/news/5164.bugfix.rst deleted file mode 100644 index 3d90a7c2..00000000 --- a/news/5164.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed edge case where a non-editable file, url or vcs would overwrite the value ``no_deps`` for all other requirements in the loop causing a retry condition. diff --git a/news/5168.vendor.rst b/news/5168.vendor.rst deleted file mode 100644 index 4fb61b76..00000000 --- a/news/5168.vendor.rst +++ /dev/null @@ -1 +0,0 @@ -Remove obsolete package ``funcsigs``. diff --git a/news/5170.vendor.rst b/news/5170.vendor.rst deleted file mode 100644 index 385f4120..00000000 --- a/news/5170.vendor.rst +++ /dev/null @@ -1 +0,0 @@ -Bump vendored dependency ``pyparsing==3.0.9``. diff --git a/news/5179.bugfix.rst b/news/5179.bugfix.rst deleted file mode 100644 index a921ce1c..00000000 --- a/news/5179.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Vendor in latest ``requirementslib`` for fix to lock when using editable VCS module with specific ``@`` git reference. diff --git a/pipenv/__version__.py b/pipenv/__version__.py index afe38f8b..a3d9bb2b 100644 --- a/pipenv/__version__.py +++ b/pipenv/__version__.py @@ -2,4 +2,4 @@ # // ) ) / / // ) ) //___) ) // ) ) || / / # //___/ / / / //___/ / // // / / || / / # // / / // ((____ // / / ||/ / -__version__ = "2022.7.5.dev0" +__version__ = "2022.7.24"