Skip to content

Commit

Permalink
*: Update CI to use mbedTLS 2.16.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Synss committed Jul 23, 2020
1 parent abe9e92 commit 302fd40
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
docker:
- image: circleci/python:2.7
environment: &env
VERSION: 2.16.6
VERSION: 2.16.7
CC: /usr/lib/ccache/cc
C_INCLUDE_PATH: /usr/local/include:/usr/include
LD_LIBRARY_PATH: /usr/local/lib:/usr/lib
Expand Down
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[next]

* *: Add support for Python 3.9.
* update wheels to mbedtls 2.16.7.

[1.3.0] - 2020-06-04

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN yum -y update \
&& yum -yq install cmake \
&& yum clean all
COPY ./scripts/ ./scripts/
RUN ./scripts/download-mbedtls.sh 2.16.6 /usr/local/src \
RUN ./scripts/download-mbedtls.sh 2.16.7 /usr/local/src \
&& ./scripts/install-mbedtls.sh /usr/local/src /usr/local \
&& cp /usr/local/src/LICENSE LICENSE.mbedtls \
&& rm -r /usr/local/src
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ The *mbedtls.version* module shows the run-time version
information to mbed TLS.

>>> from mbedtls import version
>>> _ = version.version # "mbed TLS 2.16.6"
>>> _ = version.version_info # (2, 16, 6)
>>> _ = version.version # "mbed TLS 2.16.7"
>>> _ = version.version_info # (2, 16, 7)


Message digest
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import setup, Extension, find_packages

version = "1.3.0"
mbedtls_version = "2.16.6"
mbedtls_version = "2.16.7"
download_url = "https://github.com/Synss/python-mbedtls/tarball/%s" % version


Expand Down

0 comments on commit 302fd40

Please sign in to comment.