Skip to content

Commit

Permalink
ci: Update backend to 2.28.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Synss committed Jan 27, 2024
1 parent ce46bde commit 4731b50
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}"


Expand Down

0 comments on commit 4731b50

Please sign in to comment.