From 577a8b55e66b79b9978d016121817b9f5a205aaf Mon Sep 17 00:00:00 2001 From: Bruno Rocha Date: Tue, 17 Sep 2019 15:22:35 -0300 Subject: [PATCH] Swift 5.1 support --- CHANGELOG.md | 3 +++ Formula/swiftinfo.rb | 2 +- Sources/SwiftInfo/main.swift | 2 +- SwiftInfo.podspec | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c31b3e..e8974e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ ## master +## 2.3.6 +* Recompiled for Xcode 11's toolchain (Swift 5.1) + ## 2.3.5 * Adding support for `buckLogFilePath` for the extraction of Buck Build related rules - Bruno Rocha * Adding Buck support to `TestCountProvider` - Bruno Rocha diff --git a/Formula/swiftinfo.rb b/Formula/swiftinfo.rb index fb95127..8676453 100644 --- a/Formula/swiftinfo.rb +++ b/Formula/swiftinfo.rb @@ -1,7 +1,7 @@ class Swiftinfo < Formula desc "📊 Extract and analyze the evolution of an iOS app's code." homepage "https://github.com/rockbruno/SwiftInfo" - version "2.3.5" + version "2.3.6" url "https://github.com/rockbruno/SwiftInfo/releases/download/#{version}/swiftinfo.zip" # TODO: Try something to provide a SHA automatically diff --git a/Sources/SwiftInfo/main.swift b/Sources/SwiftInfo/main.swift index a049309..9ad7dd2 100644 --- a/Sources/SwiftInfo/main.swift +++ b/Sources/SwiftInfo/main.swift @@ -7,7 +7,7 @@ public struct Main { static func run() { let fileUtils = FileUtils() let toolchainPath = getToolchainPath() - log("SwiftInfo 2.3.5") + log("SwiftInfo 2.3.6") if ProcessInfo.processInfo.arguments.contains("-version") { exit(0) } diff --git a/SwiftInfo.podspec b/SwiftInfo.podspec index cb0d1a2..d6cdeb4 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.3.5' + s.version = '2.3.6' 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'