Skip to content

Commit bc3dd10

Browse files
committed
ci: Test with upstream mbedTLS 2.16.12
1 parent 919316e commit bc3dd10

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
docker:
99
- image: circleci/python:2.7
1010
environment: &env
11-
VERSION: 2.16.11
11+
VERSION: 2.16.12
1212
CC: /usr/lib/ccache/cc
1313
C_INCLUDE_PATH: /usr/local/include:/usr/include
1414
LD_LIBRARY_PATH: /usr/local/lib:/usr/lib

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
os: [ubuntu-20.04, macos-10.15, windows-2019]
15-
version: [2.16.11]
15+
version: [2.16.12]
1616
steps:
1717
- uses: actions/checkout@v2
1818
- uses: actions/setup-python@v2

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[next]
22

33
* tls: Add support for session caching.
4+
* Update wheels to mbedtls 2.16.12
45

56
[1.6.0] - 2021-10-03
67

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ https://synss.github.io/python-mbedtls/
6565
Installation
6666
============
6767

68-
The bindings are tested with mbedTLS 2.16.11 for Python 3.6, 3.7,
68+
The bindings are tested with mbedTLS 2.16.12 for Python 3.6, 3.7,
6969
3.8, 3.9 on Linux, macOS, and Windows.
7070

7171
`manylinux`_ wheels are available for 64-bit Linux systems. Install
@@ -87,8 +87,8 @@ The *mbedtls.version* module shows the run-time version
8787
information to mbed TLS.
8888

8989
>>> from mbedtls import version
90-
>>> _ = version.version # "mbed TLS 2.16.11"
91-
>>> _ = version.version_info # (2, 16, 11)
90+
>>> _ = version.version # "mbed TLS 2.16.12"
91+
>>> _ = version.version_info # (2, 16, 12)
9292

9393

9494
Message digest

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def _get_version():
2424

2525

2626
VERSION = _get_version()
27-
MBEDTLS_VERSION = "2.16.11"
27+
MBEDTLS_VERSION = "2.16.12"
2828
DOWNLOAD_URL = "https://github.com/Synss/python-mbedtls/tarball/%s" % VERSION
2929

3030

0 commit comments

Comments
 (0)