diff --git a/Cargo.lock b/Cargo.lock index 9a8788f75..c9d612acc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2519,7 +2519,7 @@ dependencies = [ [[package]] name = "libsignal-ffi" -version = "0.87.0" +version = "0.87.1" dependencies = [ "cpufeatures", "hex", @@ -2540,14 +2540,14 @@ dependencies = [ [[package]] name = "libsignal-jni" -version = "0.87.0" +version = "0.87.1" dependencies = [ "libsignal-jni-impl", ] [[package]] name = "libsignal-jni-impl" -version = "0.87.0" +version = "0.87.1" dependencies = [ "cfg-if", "cpufeatures", @@ -2564,7 +2564,7 @@ dependencies = [ [[package]] name = "libsignal-jni-testing" -version = "0.87.0" +version = "0.87.1" dependencies = [ "jni", "libsignal-bridge-testing", @@ -2872,7 +2872,7 @@ dependencies = [ [[package]] name = "libsignal-node" -version = "0.87.0" +version = "0.87.1" dependencies = [ "cmake", "futures", diff --git a/Cargo.toml b/Cargo.toml index 4be310cef..213d41675 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ default-members = [ resolver = "2" # so that our dev-dependency features don't leak into products [workspace.package] -version = "0.87.0" +version = "0.87.1" authors = ["Signal Messenger LLC"] license = "AGPL-3.0-only" rust-version = "1.88" diff --git a/LibSignalClient.podspec b/LibSignalClient.podspec index 6d6445b06..fdf9dce34 100644 --- a/LibSignalClient.podspec +++ b/LibSignalClient.podspec @@ -5,7 +5,7 @@ Pod::Spec.new do |s| s.name = 'LibSignalClient' - s.version = '0.87.0' + s.version = '0.87.1' s.summary = 'A Swift wrapper library for communicating with the Signal messaging service.' s.homepage = 'https://github.com/signalapp/libsignal' diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 1d737669e..30c9f9ccf 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,10 +1,2 @@ -v0.87.0 - -- Expose accountExists() API to client libraries - -- Expose "grpc.AccountsAnonymousLookupUsernameHash" remote config key. When enabled, the typed chat API `lookUpUsernameHash` will use gRPC instead of the default websocket-based implementation. This has no effect if "useH2ForUnauthChat" is unset, or if an H2 connection cannot be established for some other reason. - -- Updated Kotlin and Android Gradle Plugin versions. - -- Remove PublicKey ordered comparsion +v0.87.1 diff --git a/java/build.gradle b/java/build.gradle index b415eca24..7c434f4dd 100644 --- a/java/build.gradle +++ b/java/build.gradle @@ -22,7 +22,7 @@ repositories { } allprojects { - version = "0.87.0" + version = "0.87.1" group = "org.signal" tasks.withType(JavaCompile) { diff --git a/java/code_size.json b/java/code_size.json index 6b64101f6..646b80fb6 100644 --- a/java/code_size.json +++ b/java/code_size.json @@ -818,5 +818,9 @@ { "version": "v0.86.16", "size": 6841200 + }, + { + "version": "v0.87.0", + "size": 6920624 } ] \ No newline at end of file diff --git a/node/package-lock.json b/node/package-lock.json index 648ce08d8..a5edda7a0 100644 --- a/node/package-lock.json +++ b/node/package-lock.json @@ -1,12 +1,12 @@ { "name": "@signalapp/libsignal-client", - "version": "0.87.0", + "version": "0.87.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@signalapp/libsignal-client", - "version": "0.87.0", + "version": "0.87.1", "hasInstallScript": true, "license": "AGPL-3.0-only", "dependencies": { diff --git a/node/package.json b/node/package.json index 72f97078d..bb617123f 100644 --- a/node/package.json +++ b/node/package.json @@ -1,6 +1,6 @@ { "name": "@signalapp/libsignal-client", - "version": "0.87.0", + "version": "0.87.1", "repository": "github:signalapp/libsignal", "license": "AGPL-3.0-only", "type": "module", diff --git a/rust/core/src/version.rs b/rust/core/src/version.rs index a848667a0..eb549ca6d 100644 --- a/rust/core/src/version.rs +++ b/rust/core/src/version.rs @@ -5,4 +5,4 @@ // The value of this constant is updated by the script // and should not be manually modified -pub const VERSION: &str = "0.87.0"; +pub const VERSION: &str = "0.87.1";