Skip to content

Commit

Permalink
fixed version number
Browse files Browse the repository at this point in the history
  • Loading branch information
leogdion committed Dec 30, 2016
1 parent 3f0a009 commit b2e2198
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion application/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ extension Version : CustomStringConvertible {
stage = stagebuild.stage
build = stagebuild.minimum
} else {
stage = .alpha
stage = .production
build = nil
}
switch stage {
Expand Down
1 change: 0 additions & 1 deletion framework/Builders/SVGImageConversionBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ public struct SVGImageConversionBuilder : ImageConversionBuilderProtocol {
let process = Process()
process.launchPath = inkscapeURL.path
process.arguments = arguments
print(arguments.joined(separator: " "))

if let removeAlphaProcess = removeAlphaProcess {
return .Task(ProcessImageConversionTask(process: SerialProcess(processes: [process, removeAlphaProcess]) ))
Expand Down
16 changes: 8 additions & 8 deletions framework/VCS.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
let VCS_TYPE = "git"
let VCS_BASENAME = "speculid"
let VCS_UUID: String? = "b6fd659a7d2088d5420f962a307b1f7f7e5d0604"
let VCS_NUM: Int = 457
let VCS_DATE = "2016-12-21T17:39:11Z"
let VCS_BRANCH: String = "feature/remove-alpha-channel"
let VCS_NUM: Int = 468
let VCS_DATE = "2016-12-30T19:31:12Z"
let VCS_BRANCH: String = "master"
let VCS_TAG: String? = "1.0.1"
let VCS_TICK: Int? = 7
let VCS_EXTRA: String? = "71"
let VCS_TICK: Int? = 18
let VCS_EXTRA: String? = "57"

let VCS_ACTION_STAMP: String? = "2016-12-21T17:39:11Z!leogdion@brightdigit.com"
let VCS_FULL_HASH: String = "0405254078b396d1afa1a748bac64a3b9e088efe"
let VCS_SHORT_HASH: String = "0405254"
let VCS_ACTION_STAMP: String? = "2016-12-30T19:31:12Z!noreply@github.com"
let VCS_FULL_HASH: String = "3f0a0097d2f25136ff8c5b2ab0d52f26449ffa86"
let VCS_SHORT_HASH: String = "3f0a009"

let VCS_WC_MODIFIED: Bool = true

Expand Down

0 comments on commit b2e2198

Please sign in to comment.