Skip to content

Commit 5ee261c

Browse files
Release version 0.6.0
1 parent 3733db8 commit 5ee261c

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

webrtc/CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## v0.6.0
6+
57
* Added more stats to `RemoteInboundRTPStats` and `RemoteOutboundRTPStats` [#282](https://github.com/webrtc-rs/webrtc/pull/282) by [@k0nserv](https://github.com/k0nserv).
68
* Don't register `video/rtx` codecs in `MediaEngine::register_default_codecs`. These weren't actually support and prevented RTX in the existing RTP stream from being used. Long term we should support RTX via this method, this is tracked in [#295](https://github.com/webrtc-rs/webrtc/issues/295). [#294 Remove video/rtx codecs](https://github.com/webrtc-rs/webrtc/pull/294) contributed by [k0nserv](https://github.com/k0nserv)
79
* Add IP filter to WebRTC `SettingEngine` [#306](https://github.com/webrtc-rs/webrtc/pull/306)
@@ -11,13 +13,18 @@ directions that should not send. [#316](https://github.com/webrtc-rs/webrtc/pull
1113
* Fixed a panic that would sometimes happen when collecting stats. [#327](https://github.com/webrtc-rs/webrtc/pull/327) by [@k0nserv](https://github.com/k0nserv).
1214
* Added new extension marshaller/unmarshaller for VideoOrientation, and made marshallers serializable via serde [#331](https://github.com/webrtc-rs/webrtc/pull/331) [#332](https://github.com/webrtc-rs/webrtc/pull/332)
1315
* Updated minimum rust version to `1.60.0`
14-
* Added a new `write_rtp_with_extensions` method to `TrackLocalStaticSample` and `TrackLocalStatiRTP`. [#336](https://github.com/webrtc-rs/webrtc/pull/336) by [@k0nserv](https://github.com/k0nserv).
16+
* Added a new `write_rtp_with_extensions` method to `TrackLocalStaticSample` and `TrackLocalStaticRTP`. [#336](https://github.com/webrtc-rs/webrtc/pull/336) by [@k0nserv](https://github.com/k0nserv).
1517
* Added a new `sample_writer` helper to `TrackLocalStaticSample`. [#336](https://github.com/webrtc-rs/webrtc/pull/336) by [@k0nserv](https://github.com/k0nserv).
18+
* Increased minimum versions for sub-dependencies:
19+
* `webrtc-data` version to `0.6.0`.
20+
* `webrtc-ice` version to `0.9.0`.
21+
* `webrtc-media` version to `0.5.0`.
22+
* `webrtc-sctp` version to `0.7.0`.
23+
* `webrtc-util` version to `0.7.0`.
1624

1725
### Breaking changes
1826

19-
* Allowed one single direction for extmap matching. [#321](https://github.com/webrtc-rs/webrtc/pull/321).
20-
API change for `MediaEngine::register_header_extension`.
27+
* Allowed one single direction for extmap matching. [#321](https://github.com/webrtc-rs/webrtc/pull/321). API change for `MediaEngine::register_header_extension`.
2128
* Removed support for Plan-B. All major implementations of WebRTC now support unified and continuing support for plan-b is an undue maintenance burden when unified can be used. See [“Unified Plan” Transition Guide (JavaScript)](https://docs.google.com/document/d/1-ZfikoUtoJa9k-GZG1daN0BU3IjIanQ_JSscHxQesvU/) for an overview of the changes required to migrate. [#320](https://github.com/webrtc-rs/webrtc/pull/320) by [@algesten](https://github.com/algesten).
2229
* Removed 2nd argument from `RTCCertificate::from_pem` and guard it with `pem` feature [#333]
2330
* Renamed `RTCCertificate::pem` to `serialize_pem` and guard it with `pem` feature [#333]

webrtc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webrtc"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2018"
66
description = "A pure Rust implementation of WebRTC API"

0 commit comments

Comments
 (0)