Update history, bump version(dev)

Signed-off-by: Dan Ryan <dan@danryan.co>
This commit is contained in:
Dan Ryan
2018-04-22 09:44:54 -04:00
parent 6e463c3cb0
commit b16628f13b
3 changed files with 21 additions and 6 deletions
+17
View File
@@ -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.
+3 -5
View File
@@ -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
+1 -1
View File
@@ -2,4 +2,4 @@
# // ) ) / / // ) ) //___) ) // ) ) || / /
# //___/ / / / //___/ / // // / / || / /
# // / / // ((____ // / / ||/ /
__version__ = '11.10.0'
__version__ = '11.10.1.dev1'