Skip to content

Commit df3ad93

Browse files
committed
ci: Update backend to 2.28.8
1 parent cface42 commit df3ad93

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

.github/workflows/cov.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
env:
1010
BACKEND_DIR: "${{ github.workspace }}/.local"
11-
BACKEND_VERSION: "2.28.7"
11+
BACKEND_VERSION: "2.28.8"
1212
steps:
1313

1414
- uses: actions/checkout@v3

.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
env:
1313
BACKEND_DIR: "${{ github.workspace }}/.local"
14-
BACKEND_VERSION: "2.28.7"
14+
BACKEND_VERSION: "2.28.8"
1515
steps:
1616
- uses: actions/checkout@v3
1717
with:

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
os: [ubuntu-latest, macos-latest, windows-latest]
1515
pyver: [cp38, cp39, cp310, cp311, cp312]
16-
version: [2.28.7]
16+
version: [2.28.8]
1717
steps:
1818
- uses: actions/checkout@v3
1919
- uses: actions/setup-python@v4

ChangeLog

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[next]
22

33
* pk: Remove obsoleted to_PEM and to_DER functions.
4+
* ci: Update wheels to mbedtls 2.28.8
45

56
[2.9.2] - 2024-02-18
67

README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ https://synss.github.io/python-mbedtls/
6666
Installation
6767
============
6868

69-
The bindings are tested with mbedTLS 2.28.7 for Python 3.8,
69+
The bindings are tested with mbedTLS 2.28.8 for Python 3.8,
7070
3.9, 3.10, 3.11, and 3.12 on Linux, macOS, and Windows.
7171

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

9090
>>> from mbedtls import version
91-
>>> _ = version.version # "Mbed TLS 2.28.7"
92-
>>> _ = version.version_info # (2, 28, 7)
91+
>>> _ = version.version # "Mbed TLS 2.28.8"
92+
>>> _ = version.version_info # (2, 28, 8)
9393

9494

9595
Message digest

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def _get_version():
2929

3030

3131
VERSION = _get_version()
32-
MBEDTLS_VERSION = "2.28.7"
32+
MBEDTLS_VERSION = "2.28.8"
3333
DOWNLOAD_URL = f"https://github.com/Synss/python-mbedtls/tarball/{VERSION}"
3434

3535

0 commit comments

Comments
 (0)