From 16320a95a4efe13c7e661d4c5e69ae3dcf38dd1f Mon Sep 17 00:00:00 2001 From: Jim Gustafson Date: Thu, 2 Nov 2023 11:34:14 -0700 Subject: [PATCH] Bump version to v2.34.3 --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- SignalRingRTC.podspec | 2 +- acknowledgments/acknowledgments.html | 2 +- acknowledgments/acknowledgments.md | 2 +- acknowledgments/acknowledgments.plist | 2 +- config/version.properties | 2 +- src/node/package.json | 2 +- src/rust/Cargo.toml | 2 +- 9 files changed, 18 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 31c18c09..6c93b6c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## v2.34.3 + +- Update to webrtc 5845j + - Add low bitrate redundancy support + - Lower port allocation step delay + - Prune TurnPorts on a per-server basis + - Unregister sink properly when closing + +- Call Sim: Improvements for running large test sets + ## v2.34.2 - Group Calls: Propagate demux_id to LocalDeviceState diff --git a/Cargo.lock b/Cargo.lock index fe27fc7f..e641326e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1883,7 +1883,7 @@ dependencies = [ [[package]] name = "ringrtc" -version = "2.34.2" +version = "2.34.3" dependencies = [ "aes", "aes-gcm-siv", diff --git a/SignalRingRTC.podspec b/SignalRingRTC.podspec index 8c385b4b..0ca07d92 100644 --- a/SignalRingRTC.podspec +++ b/SignalRingRTC.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = "SignalRingRTC" - s.version = "2.34.2" + s.version = "2.34.3" 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 b3887c08..4be1a7a1 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 887db151..1b62eff7 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.34.2
+## regex-aot 0.1.0, ringrtc 2.34.3
 
 ```
 GNU AFFERO GENERAL PUBLIC LICENSE
diff --git a/acknowledgments/acknowledgments.plist b/acknowledgments/acknowledgments.plist
index ed59baee..8502d43c 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.34.2
+			regex-aot 0.1.0, ringrtc 2.34.3
 			Type
 			PSGroupSpecifier
 		
diff --git a/config/version.properties b/config/version.properties
index eee935fe..638ba378 100644
--- a/config/version.properties
+++ b/config/version.properties
@@ -2,4 +2,4 @@ webrtc.version=5845j
 
 ringrtc.version.major=2
 ringrtc.version.minor=34
-ringrtc.version.revision=2
+ringrtc.version.revision=3
diff --git a/src/node/package.json b/src/node/package.json
index d84a4377..48d2c9fc 100644
--- a/src/node/package.json
+++ b/src/node/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@signalapp/ringrtc",
-  "version": "2.34.2",
+  "version": "2.34.3",
   "description": "Signal Messenger voice and video calling library.",
   "main": "dist/index.js",
   "types": "dist/index.d.ts",
diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml
index fe12da41..ae08f187 100644
--- a/src/rust/Cargo.toml
+++ b/src/rust/Cargo.toml
@@ -5,7 +5,7 @@
 
 [package]
 name = "ringrtc"
-version = "2.34.2"
+version = "2.34.3"
 authors = ["Calling Team "]
 edition = "2021"
 description = "A Rust interface for WebRTC"