Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update minimum ios version #52

Merged
merged 1 commit into from
Oct 24, 2024
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
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import PackageDescription

let package = Package(
name: "FetchNodeDetails",
platforms: [.iOS(.v13), .macOS(.v10_15)],
platforms: [.iOS(.v14), .macOS(.v10_15)],
products: [
.library(
name: "FetchNodeDetails",
Expand Down
2 changes: 1 addition & 1 deletion Sources/FetchNodeDetails/Constants/Constants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ let TORUS_NETWORK: [TorusNetwork: String] = [
public typealias TORUS_NETWORK_TYPE = String


let MULTI_CLUSTER_NETWORKS: [LegacyNetwork] = [.CELESTE]
let MULTI_CLUSTER_NETWORKS: [LegacyNetwork] = []
4 changes: 2 additions & 2 deletions Torus-fetchNodeDetails.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |spec|
spec.name = "Torus-fetchNodeDetails"
spec.version = "7.0.0"
spec.version = "8.0.0"
spec.ios.deployment_target = '13.0'
spec.summary = "Fetches the node details from torus nodelist smart contract"
spec.homepage = "https://github.com/torusresearch/fetch-node-details-swift"
spec.license = { :type => 'BSD', :file => 'License.md' }
spec.swift_version = "5.3"
spec.author = { "Shubham Rathi" => "[email protected]" }
spec.author = { "Torus Labs" => "[email protected]" }
spec.source = { :git => "https://github.com/torusresearch/fetch-node-details-swift.git", :tag => spec.version }
spec.source_files = "Sources/**/*.{swift,json}"
spec.module_name = "FetchNodeDetails"
Expand Down
4 changes: 2 additions & 2 deletions cocoapods/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- BigInt (5.2.0)
- Torus-fetchNodeDetails (7.0.0):
- Torus-fetchNodeDetails (8.0.0):
- BigInt (~> 5.2.0)

DEPENDENCIES:
Expand All @@ -16,7 +16,7 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
BigInt: f668a80089607f521586bbe29513d708491ef2f7
Torus-fetchNodeDetails: d12f3511de52bdca33ccabf35f618c296edf94c5
Torus-fetchNodeDetails: 2a5fbb222ec28af4128d64e4c2d520c7db456b78

PODFILE CHECKSUM: 33add72342a492adb43676625c404c97ced731da

Expand Down
Loading