diff --git a/HISTORY.txt b/HISTORY.txt index 7d1863e0..0e4cf48d 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -1,3 +1,20 @@ +11.10.1: + - Fix broken resolution when using multiple sources in pipfiles and passing + `--skip-lock`. + - Include all sources in `pipenv lock -r` output as `--extra-index-url` args. + - Translate index aliases to index urls from pipfile or lockfile. + - Fix virtualenv detection for .venv folders in project directories. + - Add LICENSE files for all vendored dependencies. + - Port automated tooling from pip for re-vendoring and downloading licenses + (thanks @hroncok @uranusjr and @ncoghlan for your help sorting this out). + - Remove GPL'ed code. + - Make imports lazy to improve initial load time. + - Require `--python` values to exist when passing a path. + - Bugfix for environment variable expansion in 'unlocked' pipfiles. + - Bugfix for `--deploy` flag. + - Bugfix for windows virtualenv drive letter case normalization. + - Bugfix for python version number parsing. + - Improved error messaging. 11.10.0: - Resolve editable packages on the local filesystem. - Ensure lock hash does not change based on injected env vars. diff --git a/MANIFEST.in b/MANIFEST.in index d14874f8..bbcfc9ef 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,8 +1,6 @@ -include README.rst LICENSE NOTICES HISTORY.txt pipenv/patched/safety.zip -include pipenv/patched/notpip/_vendor/requests/cacert.pem -include pipenv/vendor/pip9/_vendor/requests/cacert.pem +include README.rst README.md LICENSE NOTICES HISTORY.txt pipenv/patched/safety.zip include pipenv/vendor/pipreqs/stdlib include pipenv/vendor/pipreqs/mapping -include pipenv/vendor/requests/cacert.pem include pipenv/pipenv.1 -recursive-include pipenv *LICENSE* +recursive-include pipenv *LICENSE* *COPYING* +recursive-include pipenv cacert.pem diff --git a/pipenv/__version__.py b/pipenv/__version__.py index f0d0a00f..4e111412 100644 --- a/pipenv/__version__.py +++ b/pipenv/__version__.py @@ -2,4 +2,4 @@ # // ) ) / / // ) ) //___) ) // ) ) || / / # //___/ / / / //___/ / // // / / || / / # // / / // ((____ // / / ||/ / -__version__ = '11.10.0' +__version__ = '11.10.1.dev1'