Skip to content

Commit 577a8b5

Browse files
committed
Swift 5.1 support
1 parent 07dbeb6 commit 577a8b5

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010

1111
## master
1212

13+
## 2.3.6
14+
* Recompiled for Xcode 11's toolchain (Swift 5.1)
15+
1316
## 2.3.5
1417
* Adding support for `buckLogFilePath` for the extraction of Buck Build related rules - Bruno Rocha
1518
* Adding Buck support to `TestCountProvider` - Bruno Rocha

Formula/swiftinfo.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class Swiftinfo < Formula
22
desc "📊 Extract and analyze the evolution of an iOS app's code."
33
homepage "https://github.com/rockbruno/SwiftInfo"
4-
version "2.3.5"
4+
version "2.3.6"
55
url "https://github.com/rockbruno/SwiftInfo/releases/download/#{version}/swiftinfo.zip"
66
# TODO: Try something to provide a SHA automatically
77

Sources/SwiftInfo/main.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public struct Main {
77
static func run() {
88
let fileUtils = FileUtils()
99
let toolchainPath = getToolchainPath()
10-
log("SwiftInfo 2.3.5")
10+
log("SwiftInfo 2.3.6")
1111
if ProcessInfo.processInfo.arguments.contains("-version") {
1212
exit(0)
1313
}

SwiftInfo.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = 'SwiftInfo'
33
s.module_name = 'SwiftInfo'
4-
s.version = '2.3.5'
4+
s.version = '2.3.6'
55
s.license = { type: 'MIT', file: 'LICENSE' }
66
s.summary = 'Extract and analyze the evolution of an iOS app\'s code.'
77
s.homepage = 'https://github.com/rockbruno/SwiftInfo'

0 commit comments

Comments
 (0)