Skip to content

Commit

Permalink
Release v1.0.1 Fix #16 #17
Browse files Browse the repository at this point in the history
  • Loading branch information
skymaze committed Sep 20, 2024
1 parent 02bed7c commit c6f2210
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pymediasoup/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (1, 0, 0)
VERSION = (1, 0, 1)

__version__ = ".".join(map(str, VERSION))
4 changes: 2 additions & 2 deletions pymediasoup/handlers/aiortc_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
RTCSessionDescription,
RTCRtpTransceiver,
MediaStreamTrack,
RTCConfiguration
RTCConfiguration,
)
import sdp_transform
from .sdp import common_utils
Expand Down Expand Up @@ -168,7 +168,7 @@ def run(
}

configuration = RTCConfiguration(iceServers=iceServers)

self._pc = RTCPeerConnection(configuration=configuration)

@self._pc.on("iceconnectionstatechange")
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pymediasoup"
version = "1.0.0"
version = "1.0.1"
description = "mediasoup python client"
authors = ["Jiang Yue <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit c6f2210

Please sign in to comment.