diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 51ea78cf..0b2dcfe9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,27 @@ +2023.6.2 (2023-06-02) +===================== +Pipenv 2023.6.2 (2023-06-02) +============================ + + +Features & Improvements +----------------------- + +- Resolver performance: package sources following PEP 503 will leverage package hashes from the URL fragment, without downloading the package. `#5701 `_ + +Bug Fixes +--------- + +- Improve regex for python versions to handle hidden paths; handle relative paths to python better as well. `#4588 `_ +- Update ``pythonfinder==2.0.4`` with fix for "RecursionError: maximum recursion depth exceeded". `#5709 `_ + +Vendored Libraries +------------------ + +- Drop old vendored toml library. Use stdlib tomllib or tomli instead. `#5678 `_ +- Drop vendored library cerberus. This isn't actually used by pipenv. `#5699 `_ + + 2023.5.19 (2023-05-19) ====================== Pipenv 2023.5.19 (2023-05-19) diff --git a/news/4588.bugfix.rst b/news/4588.bugfix.rst deleted file mode 100644 index c02767cf..00000000 --- a/news/4588.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Improve regex for python versions to handle hidden paths; handle relative paths to python better as well. diff --git a/news/5678.vendor.rst b/news/5678.vendor.rst deleted file mode 100644 index d129c631..00000000 --- a/news/5678.vendor.rst +++ /dev/null @@ -1 +0,0 @@ -Drop old vendored toml library. Use stdlib tomllib or tomli instead. diff --git a/news/5681.trivial.rst b/news/5681.trivial.rst deleted file mode 100644 index 91aa9ffc..00000000 --- a/news/5681.trivial.rst +++ /dev/null @@ -1 +0,0 @@ -Reword active shell warning to reduce ambiguity diff --git a/news/5699.vendor.rst b/news/5699.vendor.rst deleted file mode 100644 index 599ed26f..00000000 --- a/news/5699.vendor.rst +++ /dev/null @@ -1 +0,0 @@ -Drop vendored library cerberus. This isn't actually used by pipenv. diff --git a/news/5701.feature.rst b/news/5701.feature.rst deleted file mode 100644 index a01d0a96..00000000 --- a/news/5701.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Resolver performance: package sources following PEP 503 will leverage package hashes from the URL fragment, without downloading the package. diff --git a/news/5709.bugfix.rst b/news/5709.bugfix.rst deleted file mode 100644 index e2888498..00000000 --- a/news/5709.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Update ``pythonfinder==2.0.4`` with fix for "RecursionError: maximum recursion depth exceeded". diff --git a/pipenv/__version__.py b/pipenv/__version__.py index 99dfd201..67d573bc 100644 --- a/pipenv/__version__.py +++ b/pipenv/__version__.py @@ -2,4 +2,4 @@ # // ) ) / / // ) ) //___) ) // ) ) || / / # //___/ / / / //___/ / // // / / || / / # // / / // ((____ // / / ||/ / -__version__ = "2023.5.20.dev0" +__version__ = "2023.6.2"