diff --git a/CHANGELOG.md b/CHANGELOG.md index 8526c6df..941c0685 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## v2.33.0 + +- Update to webrtc 5845h + - Add Rust_setIncomingAudioMuted + - Update libvpx dependency + +- Group Calls: Add Reactions feature + +- Group Calls: Prevent comfort noise from getting stuck on + +- Replace TaskQueueRuntime with Actors + +- Call Sim: Speed up chart generation + ## v2.32.1 - Desktop: Downgrade dependency for client @@ -10,10 +24,8 @@ - Increase max video receive resolution for desktop -- Update webrtc to 5845e - - Disable audio and media flow by default - - Update webrtc to 5845f + - Disable audio and media flow by default - Allow configuration of audio jitter buffer max target delay - iOS: Stop building for Catalyst @@ -36,7 +48,7 @@ - Generate license files for WebRTC builds -- call-sim: Add test iterations and mos averaging +- Call Sim: Add test iterations and mos averaging - Add more audio configuration and control diff --git a/SignalRingRTC.podspec b/SignalRingRTC.podspec index ffa84d82..3523129f 100644 --- a/SignalRingRTC.podspec +++ b/SignalRingRTC.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = "SignalRingRTC" - s.version = "2.32.1" + s.version = "2.33.0" s.summary = "A Swift & Objective-C library used by the Signal iOS app for WebRTC interactions." s.description = <<-DESC diff --git a/acknowledgments/acknowledgments.html b/acknowledgments/acknowledgments.html index 9c92c197..4e27bf17 100644 --- a/acknowledgments/acknowledgments.html +++ b/acknowledgments/acknowledgments.html @@ -732,7 +732,7 @@

GNU Affero General Public License v3.0 (synthesized)

Used by:

GNU AFFERO GENERAL PUBLIC LICENSE
 Version 3, 19 November 2007
diff --git a/acknowledgments/acknowledgments.md b/acknowledgments/acknowledgments.md
index e203d6d0..7589a854 100644
--- a/acknowledgments/acknowledgments.md
+++ b/acknowledgments/acknowledgments.md
@@ -669,7 +669,7 @@ For more information on this, and how to apply and follow the GNU AGPL, see
 
 ```
 
-## regex-aot 0.1.0, ringrtc 2.32.1
+## regex-aot 0.1.0, ringrtc 2.33.0
 
 ```
 GNU AFFERO GENERAL PUBLIC LICENSE
diff --git a/acknowledgments/acknowledgments.plist b/acknowledgments/acknowledgments.plist
index fde0aecc..e0034b1b 100644
--- a/acknowledgments/acknowledgments.plist
+++ b/acknowledgments/acknowledgments.plist
@@ -924,7 +924,7 @@ You should also get your employer (if you work as a programmer) or school, if an
 			License
 			GNU Affero General Public License v3.0
 			Title
-			regex-aot 0.1.0, ringrtc 2.32.1
+			regex-aot 0.1.0, ringrtc 2.33.0
 			Type
 			PSGroupSpecifier
 		
diff --git a/config/version.properties b/config/version.properties
index 116d04d1..dc449988 100644
--- a/config/version.properties
+++ b/config/version.properties
@@ -1,5 +1,5 @@
 webrtc.version=5845h
 
 ringrtc.version.major=2
-ringrtc.version.minor=32
-ringrtc.version.revision=1
+ringrtc.version.minor=33
+ringrtc.version.revision=0
diff --git a/src/node/package.json b/src/node/package.json
index 75bcc170..f4576167 100644
--- a/src/node/package.json
+++ b/src/node/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@signalapp/ringrtc",
-  "version": "2.32.1",
+  "version": "2.33.0",
   "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 a21c212d..6a98ce64 100644
--- a/src/rust/Cargo.lock
+++ b/src/rust/Cargo.lock
@@ -1491,7 +1491,7 @@ dependencies = [
 
 [[package]]
 name = "ringrtc"
-version = "2.32.1"
+version = "2.33.0"
 dependencies = [
  "aes",
  "aes-gcm-siv",
diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml
index 5de60c88..0b26b2f2 100644
--- a/src/rust/Cargo.toml
+++ b/src/rust/Cargo.toml
@@ -5,7 +5,7 @@
 
 [package]
 name = "ringrtc"
-version = "2.32.1"
+version = "2.33.0"
 authors = ["Calling Team "]
 edition = "2021"
 description = "A Rust interface for WebRTC"