diff --git a/CHANGELOG.md b/CHANGELOG.md index d3674d0f..2b0ff855 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v2.8.7 + +- Group Calling: Fix issue with video resolution requests + ## v2.8.6 - Update Group Calling feature diff --git a/config/version.sh b/config/version.sh index 555917fe..3f5ad8f7 100644 --- a/config/version.sh +++ b/config/version.sh @@ -13,7 +13,7 @@ WEBRTC_VERSION="4183i" RINGRTC_MAJOR_VERSION=2 RINGRTC_MINOR_VERSION=8 -RINGRTC_REVISION=6 +RINGRTC_REVISION=7 # Specify RingRTC version to publish. RINGRTC_VERSION="${RINGRTC_MAJOR_VERSION}.${RINGRTC_MINOR_VERSION}.${RINGRTC_REVISION}" diff --git a/src/node/package.json b/src/node/package.json index 9be0410a..b1f78425 100644 --- a/src/node/package.json +++ b/src/node/package.json @@ -1,6 +1,6 @@ { "name": "ringrtc", - "version": "2.8.6", + "version": "2.8.7", "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 82469f9a..886a3ec3 100644 --- a/src/rust/Cargo.lock +++ b/src/rust/Cargo.lock @@ -878,7 +878,7 @@ dependencies = [ [[package]] name = "ringrtc" -version = "2.8.6" +version = "2.8.7" dependencies = [ "aes-ctr", "base64", diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml index d6f98f61..54434c01 100644 --- a/src/rust/Cargo.toml +++ b/src/rust/Cargo.toml @@ -7,7 +7,7 @@ [package] name = "ringrtc" -version = "2.8.6" +version = "2.8.7" authors = ["Curt Brune ", "Jim Gustafson ", "Peter Thatcher ", "Vladimir Skuratovich "] edition = "2018" description = "A Rust interface for WebRTC"