From 4731b5008f28a5f20c25eef58e842788cfaf3145 Mon Sep 17 00:00:00 2001 From: Mathias Laurin Date: Sat, 27 Jan 2024 10:52:11 +0100 Subject: [PATCH] ci: Update backend to 2.28.7 --- .github/workflows/cov.yml | 2 +- .github/workflows/docs.yml | 2 +- .github/workflows/main.yml | 2 +- ChangeLog | 4 ++++ README.rst | 6 +++--- setup.py | 2 +- 6 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cov.yml b/.github/workflows/cov.yml index 1fe3eedd..02922163 100644 --- a/.github/workflows/cov.yml +++ b/.github/workflows/cov.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest env: BACKEND_DIR: "${{ github.workspace }}/.local" - BACKEND_VERSION: "2.28.6" + BACKEND_VERSION: "2.28.7" steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 8ec8a406..9e135ef5 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest env: BACKEND_DIR: "${{ github.workspace }}/.local" - BACKEND_VERSION: "2.28.6" + BACKEND_VERSION: "2.28.7" steps: - uses: actions/checkout@v3 with: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c04c73cb..7a2e480f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,7 @@ jobs: matrix: os: [ubuntu-latest, macos-latest, windows-latest] pyver: [cp38, cp39, cp310, cp311, cp312] - version: [2.28.6] + version: [2.28.7] steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 diff --git a/ChangeLog b/ChangeLog index 50503509..0e8e76d1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +[next] + +* ci: Update wheels to mbedtls 2.28.7 + [2.9.0] - 2024-01-25 * tls: Increase chunk size on socket recv/send from 1024 to 4096. diff --git a/README.rst b/README.rst index 228af182..ab0c3617 100644 --- a/README.rst +++ b/README.rst @@ -66,7 +66,7 @@ https://synss.github.io/python-mbedtls/ Installation ============ -The bindings are tested with mbedTLS 2.28.6 for Python 3.8, +The bindings are tested with mbedTLS 2.28.7 for Python 3.8, 3.9, 3.10, 3.11, and 3.12 on Linux, macOS, and Windows. `manylinux`_ wheels are available for 64-bit Linux systems. Install @@ -88,8 +88,8 @@ The *mbedtls.version* module shows the run-time version information to mbed TLS. >>> from mbedtls import version ->>> _ = version.version # "Mbed TLS 2.28.6" ->>> _ = version.version_info # (2, 28, 6) +>>> _ = version.version # "Mbed TLS 2.28.7" +>>> _ = version.version_info # (2, 28, 7) Message digest diff --git a/setup.py b/setup.py index 4323f988..d6b77c20 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def _get_version(): VERSION = _get_version() -MBEDTLS_VERSION = "2.28.6" +MBEDTLS_VERSION = "2.28.7" DOWNLOAD_URL = f"https://github.com/Synss/python-mbedtls/tarball/{VERSION}"