Skip to content

Commit

Permalink
Merge pull request #72 from GilsonPSantos/update-xcode12.5
Browse files Browse the repository at this point in the history
update dependencies to work on xcode 12.5
  • Loading branch information
rockbruno committed Jul 1, 2021
2 parents a04d963 + 41ef71d commit 92f46e4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Formula/swiftinfo.rb
Original file line number Diff line number Diff line change
@@ -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/*"]
Expand Down
12 changes: 6 additions & 6 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
},
{
Expand All @@ -33,17 +33,17 @@
"repositoryURL": "https://github.com/apple/swift-argument-parser",
"state": {
"branch": null,
"revision": "92646c0cdbaca076c8d3d0207891785b3379cbff",
"version": "0.3.1"
"revision": "986d191f94cec88f6350056da59c2e59e83d1229",
"version": "0.4.3"
}
},
{
"package": "XcodeProj",
"repositoryURL": "https://github.com/tuist/xcodeproj.git",
"state": {
"branch": null,
"revision": "f32704e01d2752bdc17cde3963bee4256c1f4df4",
"version": "7.8.0"
"revision": "0b18c3e7a10c241323397a80cb445051f4494971",
"version": "8.0.0"
}
}
]
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions SwiftInfo.podspec
Original file line number Diff line number Diff line change
@@ -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'
Expand All @@ -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
end

0 comments on commit 92f46e4

Please sign in to comment.