Skip to content

Commit

Permalink
Swift 5.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
rockbruno committed Sep 17, 2019
1 parent 07dbeb6 commit 577a8b5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Formula/swiftinfo.rb
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion Sources/SwiftInfo/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down
2 changes: 1 addition & 1 deletion 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.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'
Expand Down

0 comments on commit 577a8b5

Please sign in to comment.