diff --git a/CHANGELOG.md b/CHANGELOG.md index fc7922c3..13324fd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## v2.32.2 + +- Update webrtc to 5845c + - Update the hardcoded PulseAudio device name to "Signal Calling" + - Add more audio control and safe defaults + - Add accessor for bandwidth estimate + +- Update webrtc to 5845d + - Disable early initialization of recording + +- Generate license files for WebRTC builds + +- call-sim: Add test iterations and mos averaging + +- Add more audio configuration and control + +- Improve builds on GitHub Actions + +- Build webrtc on AWS for android, ios, linux, mac + ## v2.31.1 - Update tag for build automation diff --git a/SignalRingRTC.podspec b/SignalRingRTC.podspec index 67e986a5..c7e13f20 100644 --- a/SignalRingRTC.podspec +++ b/SignalRingRTC.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = "SignalRingRTC" - s.version = "2.31.1" + s.version = "2.31.2" s.summary = "A Swift & Objective-C library used by the Signal iOS app for WebRTC interactions." s.description = <<-DESC diff --git a/config/version.properties b/config/version.properties index b66a349e..7cd34b87 100644 --- a/config/version.properties +++ b/config/version.properties @@ -2,4 +2,4 @@ webrtc.version=5845d ringrtc.version.major=2 ringrtc.version.minor=31 -ringrtc.version.revision=1 +ringrtc.version.revision=2 diff --git a/src/node/package.json b/src/node/package.json index 400a9f01..f4a32dfb 100644 --- a/src/node/package.json +++ b/src/node/package.json @@ -1,6 +1,6 @@ { "name": "@signalapp/ringrtc", - "version": "2.31.1", + "version": "2.31.2", "description": "Signal Messenger voice and video calling library.", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/rust/Cargo.lock b/src/rust/Cargo.lock index 48d97273..a75800ad 100644 --- a/src/rust/Cargo.lock +++ b/src/rust/Cargo.lock @@ -1460,7 +1460,7 @@ dependencies = [ [[package]] name = "ringrtc" -version = "2.31.1" +version = "2.31.2" dependencies = [ "aes", "aes-gcm-siv", diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml index 41ecd770..885e0f8b 100644 --- a/src/rust/Cargo.toml +++ b/src/rust/Cargo.toml @@ -5,7 +5,7 @@ [package] name = "ringrtc" -version = "2.31.1" +version = "2.31.2" authors = ["Calling Team "] edition = "2021" description = "A Rust interface for WebRTC"