File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1+ [next]
2+
3+ * update wheels to mbedtls 1.16.6
4+
15[1.2.0] - 2020-03-10
26
37* ci: Partial support to Python 3.9
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ RUN yum -y update \
88 && yum -yq install cmake \
99 && yum clean all
1010COPY ./scripts/ ./scripts/
11- RUN ./scripts/download-mbedtls.sh 2.16.5 /usr/local/src \
11+ RUN ./scripts/download-mbedtls.sh 2.16.6 /usr/local/src \
1212 && ./scripts/install-mbedtls.sh /usr/local/src /usr/local \
1313 && cp /usr/local/src/LICENSE LICENSE.mbedtls \
1414 && rm -r /usr/local/src
Original file line number Diff line number Diff line change @@ -87,8 +87,8 @@ The *mbedtls.version* module shows the run-time version
8787information to mbed TLS.
8888
8989>>> from mbedtls import version
90- >>> _ = version.version # "mbed TLS 2.16.5 "
91- >>> _ = version.version_info # (2, 16, 5 )
90+ >>> _ = version.version # "mbed TLS 2.16.6 "
91+ >>> _ = version.version_info # (2, 16, 6 )
9292
9393
9494Message digest
Original file line number Diff line number Diff line change 44from setuptools import setup , Extension , find_packages
55
66version = "1.2.0"
7- mbedtls_version = "2.16.5 "
7+ mbedtls_version = "2.16.6 "
88download_url = "https://github.com/Synss/python-mbedtls/tarball/%s" % version
99
1010__mbedtls_version_info__ = tuple (map (int , mbedtls_version .split ("." )))
You can’t perform that action at this time.
0 commit comments