diff --git a/Scripts/increment_major_version.command b/Scripts/increment_major_version.command index 3dff613d..43677776 100755 --- a/Scripts/increment_major_version.command +++ b/Scripts/increment_major_version.command @@ -2,7 +2,7 @@ cd "$( dirname "${BASH_SOURCE[0]}" )" cd .. perl -i -pe 's/\b(\d+)(?=.\d+")/$1+1/e' FigmaExport.podspec -perl -i -pe 's/\b(\d+)(?=.\d+")/$1+1/e' ./Sources/FigmaExport/main.swift +perl -i -pe 's/\b(\d+)(?=.\d+")/$1+1/e' ./Sources/FigmaExport/FigmaExportCommand.swift perl -i -pe 's/\b(\d+)(?=\D*$)/0/e' FigmaExport.podspec -perl -i -pe 's/\b(\d+)(?=\D*$)/0/e' ./Sources/FigmaExport/main.swift +perl -i -pe 's/\b(\d+)(?=\D*$)/0/e' ./Sources/FigmaExport/FigmaExportCommand.swift diff --git a/Scripts/increment_minor_version.command b/Scripts/increment_minor_version.command index b1aad0a5..82b6405e 100755 --- a/Scripts/increment_minor_version.command +++ b/Scripts/increment_minor_version.command @@ -1,4 +1,4 @@ cd "$( dirname "${BASH_SOURCE[0]}" )" cd .. perl -i -pe 's/\b(\d+)(?=\D*$)/$1+1/e' FigmaExport.podspec -perl -i -pe 's/\b(\d+)(?=\D*$)/$1+1/e' ./Sources/FigmaExport/main.swift \ No newline at end of file +perl -i -pe 's/\b(\d+)(?=\D*$)/$1+1/e' ./Sources/FigmaExport/FigmaExportCommand.swift \ No newline at end of file diff --git a/Sources/FigmaExport/FigmaExportCommand.swift b/Sources/FigmaExport/FigmaExportCommand.swift index 03ea92b3..9e6e7cd2 100644 --- a/Sources/FigmaExport/FigmaExportCommand.swift +++ b/Sources/FigmaExport/FigmaExportCommand.swift @@ -32,7 +32,7 @@ enum FigmaExportError: LocalizedError { @main struct FigmaExportCommand: ParsableCommand { - static let version = "0.36.0" + static let version = "0.37.0" static let svgFileConverter = VectorDrawableConverter() static let fileWriter = FileWriter()