Skip to content

Commit

Permalink
Version 0.18.3
Browse files Browse the repository at this point in the history
  • Loading branch information
subdan committed Nov 27, 2020
1 parent 53ad654 commit 8a24357
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion FigmaExport.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "FigmaExport"
spec.version = "0.18.2"
spec.version = "0.18.3"
spec.summary = "Command line utility to export colors, typography, icons and images from Figma to Xcode / Android Studio project."
spec.homepage = "https://github.com/RedMadRobot/figma-export"
spec.license = { type: "MIT", file: "LICENSE" }
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let package = Package(
.package(url: "https://github.com/jpsim/Yams.git", from: "4.0.0"),
.package(url: "https://github.com/apple/swift-log.git", from: "1.4.0"),
.package(url: "https://github.com/stencilproject/Stencil.git", from: "0.14.0"),
.package(url: "https://github.com/tuist/XcodeProj.git", from: "7.14.0")
.package(url: "https://github.com/tuist/XcodeProj.git", from: "7.18.0"),
],
targets: [

Expand All @@ -28,7 +28,7 @@ let package = Package(
"FigmaExportCore",
"XcodeExport",
"AndroidExport",
"XcodeProj",
.product(name: "XcodeProj", package: "XcodeProj"),
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "Yams", package: "Yams"),
.product(name: "Logging", package: "swift-log")
Expand Down
2 changes: 1 addition & 1 deletion Sources/FigmaExport/Subcommands/VersionOptions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ struct VersionOptions: ParsableArguments {

func validate() throws {
if version {
print("0.18.2")
print("0.18.3")
throw ExitCode.success
}
}
Expand Down

0 comments on commit 8a24357

Please sign in to comment.