From 41ef71dacf7ba269189a16c0bc0f5028bc12104a Mon Sep 17 00:00:00 2001 From: Gilson Santos Date: Thu, 1 Jul 2021 09:42:15 -0300 Subject: [PATCH] update dependencies to work on xcode 12.5 --- Formula/swiftinfo.rb | 4 ++-- Package.resolved | 12 ++++++------ Package.swift | 4 ++-- SwiftInfo.podspec | 4 ++-- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Formula/swiftinfo.rb b/Formula/swiftinfo.rb index d2a77bd..e030405 100644 --- a/Formula/swiftinfo.rb +++ b/Formula/swiftinfo.rb @@ -1,11 +1,11 @@ class Swiftinfo < Formula desc "📊 Extract and analyze the evolution of an iOS app's code." homepage "https://github.com/rockbruno/SwiftInfo" - version "2.5.1" + version "2.6.0" url "https://github.com/rockbruno/SwiftInfo/releases/download/#{version}/swiftinfo.zip" # TODO: Try something to provide a SHA automatically - depends_on :xcode => ["12.3", :build] + depends_on :xcode => ["12.5", :build] def install bin.install Dir["bin/*"] diff --git a/Package.resolved b/Package.resolved index bf86e43..f176f3e 100644 --- a/Package.resolved +++ b/Package.resolved @@ -6,8 +6,8 @@ "repositoryURL": "https://github.com/tadija/AEXML", "state": { "branch": null, - "revision": "e4d517844dd03dac557e35d77a8e9ab438de91a6", - "version": "4.4.0" + "revision": "8623e73b193386909566a9ca20203e33a09af142", + "version": "4.5.0" } }, { @@ -33,8 +33,8 @@ "repositoryURL": "https://github.com/apple/swift-argument-parser", "state": { "branch": null, - "revision": "92646c0cdbaca076c8d3d0207891785b3379cbff", - "version": "0.3.1" + "revision": "986d191f94cec88f6350056da59c2e59e83d1229", + "version": "0.4.3" } }, { @@ -42,8 +42,8 @@ "repositoryURL": "https://github.com/tuist/xcodeproj.git", "state": { "branch": null, - "revision": "f32704e01d2752bdc17cde3963bee4256c1f4df4", - "version": "7.8.0" + "revision": "0b18c3e7a10c241323397a80cb445051f4494971", + "version": "8.0.0" } } ] diff --git a/Package.swift b/Package.swift index dab2c51..9ab3453 100644 --- a/Package.swift +++ b/Package.swift @@ -10,8 +10,8 @@ let package = Package( .executable(name: "swiftinfo", targets: ["SwiftInfo"]) ], dependencies: [ - .package(url: "https://github.com/tuist/xcodeproj.git", .exact("7.8.0")), - .package(url: "https://github.com/apple/swift-argument-parser", from: "0.3.0"), + .package(url: "https://github.com/tuist/xcodeproj.git", .exact("8.0.0")), + .package(url: "https://github.com/apple/swift-argument-parser", from: "0.4.0"), ], targets: [ // Csourcekitd: C modules wrapper for sourcekitd. diff --git a/SwiftInfo.podspec b/SwiftInfo.podspec index 47c329e..cb16cf1 100644 --- a/SwiftInfo.podspec +++ b/SwiftInfo.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = 'SwiftInfo' s.module_name = 'SwiftInfo' - s.version = '2.5.1' + s.version = '2.6.0' s.license = { type: 'MIT', file: 'LICENSE' } s.summary = 'Extract and analyze the evolution of an iOS app\'s code.' s.homepage = 'https://github.com/rockbruno/SwiftInfo' @@ -10,4 +10,4 @@ Pod::Spec.new do |s| s.source = { http: "https://github.com/rockbruno/SwiftInfo/releases/download/#{s.version}/SwiftInfo.zip" } s.preserve_paths = '*' s.exclude_files = '**/file.zip' -end \ No newline at end of file +end