summaryrefslogtreecommitdiff
path: root/src/cryptography/__about__.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2021-02-07 11:36:56 -0500
committerGitHub <noreply@github.com>2021-02-07 10:36:56 -0600
commit82b6ce28389f0a317bc55ba2091a74b346db7cae (patch)
tree7664b5f2c5af817e737da24d729ecb93ea011e42 /src/cryptography/__about__.py
parent1ff0d50948bbb6f2aa53d5648f1188a567d941cd (diff)
downloadcryptography-3.3.x.tar.gz
correct buffer overflows cause by integer overflow in openssl (#5747)3.3.23.3.x
* correct buffer overflows cause by integer overflow in openssl frustratingly, there is no test for this -- that's because testing this requires allocating more memory than is available in CI. fixes #5615. * backport CI fixes * another CI backport
Diffstat (limited to 'src/cryptography/__about__.py')
-rw-r--r--src/cryptography/__about__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptography/__about__.py b/src/cryptography/__about__.py
index 0c7eaaa09..f81650925 100644
--- a/src/cryptography/__about__.py
+++ b/src/cryptography/__about__.py
@@ -22,10 +22,10 @@ __summary__ = (
)
__uri__ = "https://github.com/pyca/cryptography"
-__version__ = "3.3.1"
+__version__ = "3.3.2"
__author__ = "The cryptography developers"
__email__ = "cryptography-dev@python.org"
__license__ = "BSD or Apache License, Version 2.0"
-__copyright__ = "Copyright 2013-2020 {}".format(__author__)
+__copyright__ = "Copyright 2013-2021 {}".format(__author__)