Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .changeset/swift-crypto-5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"@germ-network/atprotoclient": minor
---

Widen the `swift-crypto` dependency to `from: "5.0.0"`.

Part of the org-wide move to swift-crypto 5. Builds and the full test suite
(51 tests) pass against 5.0.0 unchanged.
14 changes: 7 additions & 7 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 7 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,19 @@ let package = Package(
dependencies: [
.package(
url: "https://github.com/germ-network/AtprotoTypes.git",
from: "0.5.1"
// Temporary revision pin to the swift-crypto-5 commit
// (germ-network/AtprotoTypes#69); replace with the released version
// once it cuts.
from: "0.7.0"
),
.package(
url: "https://github.com/germ-network/GermConvenience.git",
// 0.8.0 split HTTP helpers into GermConvenienceHTTP — the floor this
// package now needs for HTTPDataResponse/HTTPFetcher.
from: "0.8.0"
// 0.10.0 is its swift-crypto-5 release — the revision pin drops.
from: "0.10.0"
),
.package(
url: "https://github.com/apple/swift-crypto.git",
.upToNextMajor(from: "4.2.0")),
from: "5.0.0"),
.package(url: "https://github.com/apple/swift-log", from: "1.6.0"),
.package(url: "https://github.com/apple/swift-http-types.git", from: "1.5.1"),
],
Expand Down
Loading