Skip to content

Commit 7d028ba

Browse files
committed
enable migration client
1 parent 9a8d47f commit 7d028ba

4 files changed

Lines changed: 29 additions & 27 deletions

File tree

Cargo.lock

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ resolver = "3"
2525

2626
[workspace.package]
2727
license = "MIT"
28-
version = "1.10.0"
28+
version = "1.10.0-mpre1"
2929
rust-version = "1.94.0"
3030
publish = false
3131
edition = "2024"

bindings/mobile/src/mls.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ pub async fn connect_to_backend(
165165
.maybe_auth_handle(auth_handle.map(|handle| handle.as_ref().clone().into()));
166166
// switch v3/d14n based on presence of gateway host to preserve
167167
// previous behavior and avoid breaking changes
168-
let client_bundle = client_bundle.build_optional_d14n()?;
168+
let client_bundle = client_bundle.build()?;
169169
let backend = MessageBackendBuilder::default().from_bundle(client_bundle.clone())?;
170170
let api: ApiClientWrapper<xmtp_mls::XmtpApiClient> =
171171
ApiClientWrapper::new(backend, strategies::exponential_cooldown());

nix/package/ios.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,8 @@ let
107107
mkdir -p $out/${target}
108108
cp target/${target}/release/libxmtpv3.a $out/${target}/
109109
cp target/${target}/release/libxmtpv3.dylib $out/${target}/
110+
'';
111+
postFixup = ''
110112
install_name_tool -id @rpath/libxmtpv3.dylib $out/${target}/libxmtpv3.dylib
111113
'';
112114
}

0 commit comments

Comments
 (0)