-
-
Notifications
You must be signed in to change notification settings - Fork 258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prepare the 2.1.7 release. #934
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,45 @@ | ||
Release Notes | ||
============= | ||
|
||
2.1.5 | ||
2.1.7 | ||
----- | ||
|
||
This release brings more robust control of the Pex cache (PEX_ROOT). | ||
|
||
The `--cache-dir` setting is deprecated in favor of build time control of the cache location with | ||
`--pex-root` and new support for control of the cache's runtime location with `--runtime-pex-root` | ||
is added. As in the past, the `PEX_ROOT` environment variable can still be used to control the | ||
cache's runtime location. | ||
|
||
Unlike in the past, the [Pex PEX](https://github.com/pantsbuild/pex/releases/download/v2.1.7/pex) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. N.B.: This link will only work after the release is complete. |
||
we release can now also be controlled via the `PEX_ROOT` environment variable. Consult the CLI help | ||
for `--no-strip-pex-env` to find out more. | ||
|
||
* Sanitize PEX_ROOT handling. (#929) | ||
`PR #929 <https://github.com/pantsbuild/pex/pull/929>`_ | ||
|
||
* Fix `PEX_*` env stripping and allow turning off. (#932) | ||
`PR #932 <https://github.com/pantsbuild/pex/pull/932>`_ | ||
|
||
* Remove second urllib import from compatibility (#931) | ||
`PR #931 <https://github.com/pantsbuild/pex/pull/931>`_ | ||
|
||
* Adding `--runtime-pex-root` option. (#780) | ||
`PR #780 <https://github.com/pantsbuild/pex/pull/780>`_ | ||
|
||
* Improve interpreter not found error messages. (#928) | ||
`PR #928 <https://github.com/pantsbuild/pex/pull/928>`_ | ||
|
||
* Add detail in interpreter selection error message. (#927) | ||
`PR #927 <https://github.com/pantsbuild/pex/pull/927>`_ | ||
|
||
* Respect `Requires-Python` in `PEXEnvironment`. (#923) | ||
`PR #923 <https://github.com/pantsbuild/pex/pull/923>`_ | ||
|
||
* Pin our tox version in CI for stability. (#924) | ||
`PR #924 <https://github.com/pantsbuild/pex/pull/924>`_ | ||
|
||
2.1.6 | ||
----- | ||
|
||
* Don't delete the root __init__.py when devendoring. (#915) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright 2015 Pants project contributors (see CONTRIBUTORS.md). | ||
# Licensed under the Apache License, Version 2.0 (see LICENSE). | ||
|
||
__version__ = '2.1.6' | ||
__version__ = '2.1.7' |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you know when you want to remove the deprecation, consider mentioning it. I imagine Pex 2.2.0?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't, see: #584