From 0a06f69bce222c184a8d4022b8cf4202b02b9001 Mon Sep 17 00:00:00 2001 From: Andrew Date: Wed, 6 Nov 2024 17:28:18 -0500 Subject: [PATCH] Bump to version v0.61.0 --- Cargo.lock | 8 ++++---- LibSignalClient.podspec | 2 +- java/build.gradle | 2 +- node/package.json | 2 +- rust/bridge/ffi/Cargo.toml | 2 +- rust/bridge/jni/Cargo.toml | 2 +- rust/bridge/jni/testing/Cargo.toml | 2 +- rust/bridge/node/Cargo.toml | 2 +- rust/core/src/version.rs | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 685f505a3..1dfed6d4f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2182,7 +2182,7 @@ dependencies = [ [[package]] name = "libsignal-ffi" -version = "0.60.2" +version = "0.61.0" dependencies = [ "cpufeatures", "futures-util", @@ -2197,7 +2197,7 @@ dependencies = [ [[package]] name = "libsignal-jni" -version = "0.60.2" +version = "0.61.0" dependencies = [ "cfg-if", "cpufeatures", @@ -2213,7 +2213,7 @@ dependencies = [ [[package]] name = "libsignal-jni-testing" -version = "0.60.2" +version = "0.61.0" dependencies = [ "jni 0.21.1", "libsignal-bridge-testing", @@ -2422,7 +2422,7 @@ dependencies = [ [[package]] name = "libsignal-node" -version = "0.60.2" +version = "0.61.0" dependencies = [ "cmake", "futures", diff --git a/LibSignalClient.podspec b/LibSignalClient.podspec index ba1211afb..510d36982 100644 --- a/LibSignalClient.podspec +++ b/LibSignalClient.podspec @@ -5,7 +5,7 @@ Pod::Spec.new do |s| s.name = 'LibSignalClient' - s.version = '0.60.2' + s.version = '0.61.0' s.summary = 'A Swift wrapper library for communicating with the Signal messaging service.' s.homepage = 'https://github.com/signalapp/libsignal' diff --git a/java/build.gradle b/java/build.gradle index 4aae71221..c2fec91df 100644 --- a/java/build.gradle +++ b/java/build.gradle @@ -6,7 +6,7 @@ plugins { } allprojects { - version = "0.60.2" + version = "0.61.0" group = "org.signal" } diff --git a/node/package.json b/node/package.json index 06aac8ac8..be10411c8 100644 --- a/node/package.json +++ b/node/package.json @@ -1,6 +1,6 @@ { "name": "@signalapp/libsignal-client", - "version": "0.60.2", + "version": "0.61.0", "license": "AGPL-3.0-only", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/rust/bridge/ffi/Cargo.toml b/rust/bridge/ffi/Cargo.toml index 0320e747c..29984820d 100644 --- a/rust/bridge/ffi/Cargo.toml +++ b/rust/bridge/ffi/Cargo.toml @@ -5,7 +5,7 @@ [package] name = "libsignal-ffi" -version = "0.60.2" +version = "0.61.0" authors = ["Signal Messenger LLC"] edition = "2021" license = "AGPL-3.0-only" diff --git a/rust/bridge/jni/Cargo.toml b/rust/bridge/jni/Cargo.toml index 5f8b8707c..d8d91e353 100644 --- a/rust/bridge/jni/Cargo.toml +++ b/rust/bridge/jni/Cargo.toml @@ -5,7 +5,7 @@ [package] name = "libsignal-jni" -version = "0.60.2" +version = "0.61.0" authors = ["Signal Messenger LLC"] edition = "2021" license = "AGPL-3.0-only" diff --git a/rust/bridge/jni/testing/Cargo.toml b/rust/bridge/jni/testing/Cargo.toml index 74633fe1d..358c05794 100644 --- a/rust/bridge/jni/testing/Cargo.toml +++ b/rust/bridge/jni/testing/Cargo.toml @@ -5,7 +5,7 @@ [package] name = "libsignal-jni-testing" -version = "0.60.2" +version = "0.61.0" authors = ["Signal Messenger LLC"] edition = "2021" license = "AGPL-3.0-only" diff --git a/rust/bridge/node/Cargo.toml b/rust/bridge/node/Cargo.toml index d2841e455..38b0c8312 100644 --- a/rust/bridge/node/Cargo.toml +++ b/rust/bridge/node/Cargo.toml @@ -5,7 +5,7 @@ [package] name = "libsignal-node" -version = "0.60.2" +version = "0.61.0" authors = ["Signal Messenger LLC"] license = "AGPL-3.0-only" edition = "2021" diff --git a/rust/core/src/version.rs b/rust/core/src/version.rs index 6572d5488..9f83a55db 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.60.2"; +pub const VERSION: &str = "0.61.0";