summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Coraor <nate@bx.psu.edu>2016-02-03 16:23:11 -0500
committerNate Coraor <nate@bx.psu.edu>2016-02-03 16:23:11 -0500
commit9d1759d6cc0d007b007905f1edaf16cc8ee4d1ff (patch)
tree759e03dde80a08176cabee5e3e3bf895a5852337
parentea2bf8768b5a308af36eb4fa10041882fee213e0 (diff)
downloadwheel-9d1759d6cc0d007b007905f1edaf16cc8ee4d1ff.tar.gz
Record changes for 0.27.0 release
-rw-r--r--CHANGES.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index afee416..c4603d1 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,23 @@
+0.27.0
+======
+- Rename `--plat-name` to `--plat-tag` (`--plat-name` remains as a deprecated
+ option) and support forcing a platform tag on pure-Python wheels, as well as
+ nonstandard platform tags on non-pure wheels (Pull Request #60, Issue #144,
+ thanks Andrés Díaz)
+- Add SOABI tags to platform-specific wheels built for Python 2.X (Pull Request
+ #55, Issue #63, Issue #101)
+- Support reproducible wheel files, wheels that can be rebuilt and will hash to
+ the same values as previous builds (Pull Request #52, Issue #143, thanks
+ Barry Warsaw)
+- Support for changes in keyring >= 8.0 (Pull Request #61, thanks Jason R.
+ Coombs)
+- Use the file context manager when checking if dependency_links.txt is empty,
+ fixes problems building wheels under PyPy on Windows (Issue #150, thanks
+ Cosimo Lupo)
+- Don't attempt to (recursively) create a build directory ending with `..`
+ (invalid on all platforms, but code was only executed on Windows) (Issue #91)
+- Added the PyPA Code of Conduct (Pull Request #56)
+
0.26.0
======
- Fix multiple entrypoint comparison failure on Python 3 (Issue #148)