diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2019-06-19 19:05:12 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2019-06-19 20:05:12 -0400 |
commit | af4d070e8f5919652485db5940f5970d7d1d699f (patch) | |
tree | 74e0abd6912210f3a80a60d74d403b894e722ea2 | |
parent | 03aa6f8da83a54c3f8f0bfebdbf318c67d5d1fe6 (diff) | |
download | py-bcrypt-git-3.1.7.tar.gz |
bcrypt 3.1.7 release (#180)3.1.7
* bcrypt 3.1.7 release
* empty commits are critical for a functioning CI apparently
-rw-r--r-- | README.rst | 7 | ||||
-rw-r--r-- | src/bcrypt/__about__.py | 4 |
2 files changed, 9 insertions, 2 deletions
@@ -45,6 +45,13 @@ While bcrypt remains a good choice for password storage depending on your specif Changelog ========= +3.1.7 +----- + +* Set a ``setuptools`` lower bound for PEP517 wheel building. +* We no longer distribute 32-bit ``manylinux1`` wheels. Continuing to produce + them was a maintenance burden. + 3.1.6 ----- diff --git a/src/bcrypt/__about__.py b/src/bcrypt/__about__.py index 9587ab3..e02a9a5 100644 --- a/src/bcrypt/__about__.py +++ b/src/bcrypt/__about__.py @@ -26,10 +26,10 @@ __title__ = "bcrypt" __summary__ = "Modern password hashing for your software and your servers" __uri__ = "https://github.com/pyca/bcrypt/" -__version__ = "3.1.7.dev1" +__version__ = "3.1.7" __author__ = "The Python Cryptographic Authority developers" __email__ = "cryptography-dev@python.org" __license__ = "Apache License, Version 2.0" -__copyright__ = "Copyright 2013-2016 {0}".format(__author__) +__copyright__ = "Copyright 2013-2019 {0}".format(__author__) |