From 41729c0d7931316a2703bb6fd5ad9fa8444e0abc Mon Sep 17 00:00:00 2001 From: Bruno Rocha Date: Sat, 6 Feb 2021 11:50:01 +0100 Subject: [PATCH] Version bump --- Formula/swiftinfo.rb | 4 ++-- Sources/SwiftInfo/main.swift | 2 +- SwiftInfo.podspec | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Formula/swiftinfo.rb b/Formula/swiftinfo.rb index bd284c9..65f95f3 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.4.0" + version "2.5.0" url "https://github.com/rockbruno/SwiftInfo/releases/download/#{version}/swiftinfo.zip" # TODO: Try something to provide a SHA automatically - depends_on :xcode => ["12.2", :build] + depends_on :xcode => ["12.3", :build] def install bin.install Dir["bin/*"] diff --git a/Sources/SwiftInfo/main.swift b/Sources/SwiftInfo/main.swift index 71f977f..1c21ec7 100644 --- a/Sources/SwiftInfo/main.swift +++ b/Sources/SwiftInfo/main.swift @@ -6,7 +6,7 @@ let task = Process() struct Swiftinfo: ParsableCommand { static var configuration = CommandConfiguration( - abstract: "Swiftinfo 2.4.0", + abstract: "Swiftinfo 2.5.0", subcommands: [] ) diff --git a/SwiftInfo.podspec b/SwiftInfo.podspec index 6891025..955ad51 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.4.0' + s.version = '2.5.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'