Skip to content

Commit 4dd2bb7

Browse files
committed
Release 2.15.0
1 parent 8bb0aa5 commit 4dd2bb7

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

CHANGELOG.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22
Changelog
33
=========
44

5+
spyne-2.15.0
6+
------------
7+
* Python 3.11, 3.12, 3.13 and 3.14 support.
8+
* Fixed ``SyntaxWarning`` for invalid string escapes in ``protocol/http.py``,
9+
``protocol/json.py`` and ``util/invregexp.py``.
10+
* Fixed ``SyntaxWarning`` from PEP 765 (Python 3.14): ``break`` statement
11+
hoisted out of a ``finally`` block in ``protocol/cloth/to_cloth.py``.
12+
* ``server/twisted/http.py``: ``cgi`` module was removed in Python 3.13;
13+
the multipart code path now falls back to the ``legacy-cgi`` PyPI package
14+
and raises a descriptive error if it is needed but missing.
15+
* Replaced deprecated ``unittest`` aliases (``assertEquals`` etc.) in the
16+
test suite for Python 3.12+ compatibility.
17+
518
spyne-2.14.0
619
------------
720
* Python 3.10 support.

spyne/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
class LogicError(Exception):
2222
pass
2323

24-
__version__ = '2.15.0-alpha'
24+
__version__ = '2.15.0'
2525

2626
from pytz import utc as LOCAL_TZ
2727
from decimal import Decimal as D

0 commit comments

Comments
 (0)