Skip to content

Commit 8a24357

Browse files
committed
Version 0.18.3
1 parent 53ad654 commit 8a24357

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

FigmaExport.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "FigmaExport"
3-
spec.version = "0.18.2"
3+
spec.version = "0.18.3"
44
spec.summary = "Command line utility to export colors, typography, icons and images from Figma to Xcode / Android Studio project."
55
spec.homepage = "https://github.com/RedMadRobot/figma-export"
66
spec.license = { type: "MIT", file: "LICENSE" }

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ let package = Package(
1616
.package(url: "https://github.com/jpsim/Yams.git", from: "4.0.0"),
1717
.package(url: "https://github.com/apple/swift-log.git", from: "1.4.0"),
1818
.package(url: "https://github.com/stencilproject/Stencil.git", from: "0.14.0"),
19-
.package(url: "https://github.com/tuist/XcodeProj.git", from: "7.14.0")
19+
.package(url: "https://github.com/tuist/XcodeProj.git", from: "7.18.0"),
2020
],
2121
targets: [
2222

@@ -28,7 +28,7 @@ let package = Package(
2828
"FigmaExportCore",
2929
"XcodeExport",
3030
"AndroidExport",
31-
"XcodeProj",
31+
.product(name: "XcodeProj", package: "XcodeProj"),
3232
.product(name: "ArgumentParser", package: "swift-argument-parser"),
3333
.product(name: "Yams", package: "Yams"),
3434
.product(name: "Logging", package: "swift-log")

Sources/FigmaExport/Subcommands/VersionOptions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ struct VersionOptions: ParsableArguments {
77

88
func validate() throws {
99
if version {
10-
print("0.18.2")
10+
print("0.18.3")
1111
throw ExitCode.success
1212
}
1313
}

0 commit comments

Comments
 (0)