Skip to content

Commit d39fcd0

Browse files
committed
1.13.0
1 parent 03f0d49 commit d39fcd0

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

docs/changelog.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@ Changelog
33

44
.. currentmodule:: aiortc
55

6+
1.13.0
7+
------
8+
9+
* Add support for `G.722` audio codec.
10+
* Handle undecodable VP8 packages as was done prior to release 1.12.0.
11+
* Limit the number of threads used for VP8 encoding as was done prior to
12+
release 1.12.0.
13+
* Allow calling :meth:`RTCPeerConnection.setLocalDescription` with no argument
14+
to implicitly create an offer or answer as needed.
15+
* Support creating offers without media or data channels.
16+
* Reject STUN URLs containing a "transport" query parameter.
17+
618
1.12.0
719
------
820

src/aiortc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
RTCTransportStats,
5151
)
5252

53-
__version__ = "1.12.0"
53+
__version__ = "1.13.0"
5454

5555
# Set default logging handler to avoid "No handler found" warnings.
5656
logging.getLogger(__name__).addHandler(logging.NullHandler())

src/aiortc/rtcpeerconnection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,7 @@ async def setLocalDescription(
744744
745745
:param sessionDescription: An :class:`RTCSessionDescription` generated
746746
by :meth:`createOffer` or :meth:`createAnswer()`
747-
or None to implicitly create an offer or create
747+
or `None` to implicitly create an offer or create
748748
an answer, as needed.
749749
"""
750750
# check state is valid

0 commit comments

Comments
 (0)