Skip to content

Commit de9eb2f

Browse files
authored
chore: Update CHANGELOG to release a bug fix version (#314)
* update CHANGELOG.md to release a bug fix version * fix bugs
1 parent 2dee672 commit de9eb2f

File tree

8 files changed

+37
-23
lines changed

8 files changed

+37
-23
lines changed

CHANGELOG.md

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,35 @@ All notable changes to the webrtc package will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [2.3.2] - 2021-02-12
8+
9+
### Changed
10+
11+
- Changed `Audio.CaptureStream` method to allow setting of audio track label.
12+
13+
### Fixed
14+
15+
- Fixed memory leaks in native code.
16+
- Fixed a crash bug when access an instance after disposed of it.
17+
- Fixed `MediaStream.GetVideoStreamTrack` method and `MediaStream.GetVideoStreamTrack` method to return a correct value.
18+
- Fixed `RTCRtpTransceiver.Receiver` property and `RTCRtpTransceiver.Sender` property to return a correct value.
19+
720
## [2.3.1] - 2021-01-07
821

922
### Fixed
1023

11-
- Fixed `RTCIceCandidate.candidate` property in order to return a correct SDP formatted string
24+
- Fixed `RTCIceCandidate.candidate` property in order to return a correct SDP formatted string.
1225

1326
## [2.3.0] - 2020-12-28
1427

1528
### Added
1629

17-
- iOS platform support
18-
- H.264 HW decoder (VideoToolbox) support on macOS
30+
- Supported iOS platform
31+
- Supported H.264 HW decoder (VideoToolbox) on macOS
1932
- Added `GetCapabilities` method to the `RTCRtpSender` class and the `RTCRtpReceiver` class
20-
- Added `SetCodecPreferences` method to the `RTCRtpTransceiver` class.
33+
- Added `SetCodecPreferences` method to the `RTCRtpTransceiver` class
2134
- Added two samples (`ChangeCodecs`, `TrickleIce`)
22-
- Added properties to the `RTCIceCandidate` class
35+
- Added properties to the `RTCIceCandidate` class
2336
- Added properties tp the `RTCDataChannelInit` class
2437

2538
### Changed
@@ -47,7 +60,7 @@ public RTCDataChannel CreateDataChannel(string label RTCDataChannelInit options
4760

4861
### Added
4962

50-
- Added a `Bandwidth` sample
63+
- Added a `Bandwidth` sample
5164

5265
### Fixed
5366

Documentation~/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Check Package Manager window, Click `+` button and select `Add package from git
3232
Input the string below to the input field.
3333

3434
```
35-
35+
3636
```
3737

3838
The list of version string is [here](https://github.com/Unity-Technologies/com.unity.webrtc/tags). In most cases, the latest version is recommended to use.

Plugin~/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if(NOT CMAKE_OSX_DEPLOYMENT_TARGET)
77
endif()
88

99
project(webrtc
10-
VERSION 2.3.1
10+
VERSION 2.3.2
1111
LANGUAGES C CXX ASM
1212
)
1313

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ If you are interested in the streaming solution with WebRTC, you can check [Unit
99

1010
## Documentation
1111

12-
- [English](https://docs.unity3d.com/Packages/[email protected]/manual/index.html)
13-
- [Japanese](https://docs.unity3d.com/Packages/[email protected]/manual/jp/index.html)
12+
- [English](https://docs.unity3d.com/Packages/com.unity.webrtc@latest/index.html)
13+
- [Japanese](https://docs.unity3d.com/ja/Packages/com.unity.webrtc@latest/index.html
14+
)
1415

1516
### Guide
1617

@@ -85,7 +86,7 @@ This package uses GPU hardware acceleration for video encoding, so it only runs
8586
| `2.1` | [M84](https://groups.google.com/g/discuss-webrtc/c/MRAV4jgHYV0/m/A5X253_ZAQAJ) | - Profiler tool <br>- Bitrate control | Aug 2020 |
8687
| `2.2` | [M85](https://groups.google.com/g/discuss-webrtc/c/Qq3nsR2w2HU/m/7WGLPscPBwAJ) | - Video decoder (VP8, VP9 only) <br>- Vulkan HW encoder support <br>- MacOS HW encoder support | Oct 2020 |
8788
| `2.3` | [M85](https://groups.google.com/g/discuss-webrtc/c/Qq3nsR2w2HU/m/7WGLPscPBwAJ) | - iOS platform suppport | Dec 2020 |
88-
| `2.4` | [M88](https://groups.google.com/g/discuss-webrtc/c/A0FjOcTW2c0/m/UAv-veyPCAAJ) | - Android platform suppport | Feb 2021 |
89+
| `2.4` | [M89](https://groups.google.com/g/discuss-webrtc/c/Zrsn2hi8FV0/m/KIbn0EZPBQAJ) | - Android platform suppport<br> - Audio renderer support | Mar 2021 |
8990

9091
## Licenses
9192

WebRTC~/Packages/manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"dependencies": {
33
"com.unity.editorcoroutines": "1.0.0",
4-
"com.unity.ext.nunit": "1.0.5",
4+
"com.unity.ext.nunit": "1.0.6",
55
"com.unity.ide.rider": "2.0.7",
6-
"com.unity.ide.visualstudio": "2.0.2",
6+
"com.unity.ide.visualstudio": "2.0.5",
77
"com.unity.ide.vscode": "1.2.3",
8-
"com.unity.test-framework": "1.1.19",
9-
"com.unity.testtools.codecoverage": "0.3.0-preview",
8+
"com.unity.test-framework": "1.1.20",
9+
"com.unity.testtools.codecoverage": "0.4.2-preview",
1010
"com.unity.ugui": "1.0.0",
1111
"com.unity.modules.ai": "1.0.0",
1212
"com.unity.modules.androidjni": "1.0.0",

WebRTC~/Packages/packages-lock.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"url": "https://packages.unity.com"
99
},
1010
"com.unity.ext.nunit": {
11-
"version": "1.0.5",
11+
"version": "1.0.6",
1212
"depth": 0,
1313
"source": "registry",
1414
"dependencies": {},
@@ -24,7 +24,7 @@
2424
"url": "https://packages.unity.com"
2525
},
2626
"com.unity.ide.visualstudio": {
27-
"version": "2.0.2",
27+
"version": "2.0.5",
2828
"depth": 0,
2929
"source": "registry",
3030
"dependencies": {},
@@ -45,18 +45,18 @@
4545
"url": "https://packages.unity.com"
4646
},
4747
"com.unity.test-framework": {
48-
"version": "1.1.19",
48+
"version": "1.1.20",
4949
"depth": 0,
5050
"source": "registry",
5151
"dependencies": {
52-
"com.unity.ext.nunit": "1.0.5",
52+
"com.unity.ext.nunit": "1.0.6",
5353
"com.unity.modules.imgui": "1.0.0",
5454
"com.unity.modules.jsonserialize": "1.0.0"
5555
},
5656
"url": "https://packages.unity.com"
5757
},
5858
"com.unity.testtools.codecoverage": {
59-
"version": "0.3.0-preview",
59+
"version": "0.4.2-preview",
6060
"depth": 0,
6161
"source": "registry",
6262
"dependencies": {
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
m_EditorVersion: 2019.4.16f1
2-
m_EditorVersionWithRevision: 2019.4.16f1 (e05b6e02d63e)
1+
m_EditorVersion: 2019.4.19f1
2+
m_EditorVersionWithRevision: 2019.4.19f1 (ca5b14067cec)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.unity.webrtc",
33
"displayName": "WebRTC",
4-
"version": "2.3.1-preview",
4+
"version": "2.3.2-preview",
55
"unity": "2019.4",
66
"description": "The WebRTC package provides browsers and mobile applications with Real-Time Communications (RTC) capabilities.",
77
"keywords": [

0 commit comments

Comments
 (0)