From 10569c29a92b436269c7b51d7e098b15f052e283 Mon Sep 17 00:00:00 2001 From: Daniil Subbotin Date: Wed, 9 Nov 2022 23:46:40 +0300 Subject: [PATCH] 0.37.0 --- Scripts/increment_major_version.command | 4 ++-- Scripts/increment_minor_version.command | 2 +- Sources/FigmaExport/FigmaExportCommand.swift | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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()