Skip to content

Commit

Permalink
Binding bump for history dm sync (#453)
Browse files Browse the repository at this point in the history
* update bindings

* add tests
  • Loading branch information
nplasterer authored Dec 21, 2024
1 parent cb9e270 commit 7ddd7ab
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ let package = Package(
.package(url: "https://github.com/bufbuild/connect-swift", exact: "1.0.0"),
.package(url: "https://github.com/apple/swift-docc-plugin.git", from: "1.4.3"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", exact: "1.8.3"),
.package(url: "https://github.com/xmtp/libxmtp-swift.git", exact: "3.0.14")
.package(url: "https://github.com/xmtp/libxmtp-swift.git", exact: "3.0.15")
],
targets: [
.target(
Expand Down
8 changes: 4 additions & 4 deletions Tests/XMTPTests/ConversationTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ class ConversationTests: XCTestCase {
let convoCountConsent = try await fixtures.boClient.conversations
.syncAllConversations(consentState: .allowed)

XCTAssertEqual(convoCount, 2)
XCTAssertEqual(convoCountConsent, 2)
XCTAssertEqual(convoCount, 3)
XCTAssertEqual(convoCountConsent, 3)

try await group.updateConsentState(state: .denied)

Expand All @@ -104,8 +104,8 @@ class ConversationTests: XCTestCase {
let convoCountDenied = try await fixtures.boClient.conversations
.syncAllConversations(consentState: .denied)

XCTAssertEqual(convoCountAllowed, 1)
XCTAssertEqual(convoCountDenied, 1)
XCTAssertEqual(convoCountAllowed, 2)
XCTAssertEqual(convoCountDenied, 2)
}

func testCanListConversationsOrder() async throws {
Expand Down
2 changes: 1 addition & 1 deletion XMTP.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Pod::Spec.new do |spec|

spec.dependency 'CSecp256k1', '~> 0.2'
spec.dependency "Connect-Swift", "= 1.0.0"
spec.dependency 'LibXMTP', '= 3.0.14'
spec.dependency 'LibXMTP', '= 3.0.15'
spec.dependency 'CryptoSwift', '= 1.8.3'
spec.dependency 'SQLCipher', '= 4.5.7'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/xmtp/libxmtp-swift.git",
"state" : {
"revision" : "9cf94acdea7d03008b1f130a9848c38ee6b711de",
"version" : "3.0.14"
"revision" : "2fd0b26c9b3e20fcae7366176fbe41bc4528d0c7",
"version" : "3.0.15"
}
},
{
Expand Down

0 comments on commit 7ddd7ab

Please sign in to comment.