Skip to content

Commit

Permalink
0.37.0
Browse files Browse the repository at this point in the history
  • Loading branch information
subdan committed Nov 9, 2022
1 parent b529f02 commit 10569c2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Scripts/increment_major_version.command
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion Scripts/increment_minor_version.command
Original file line number Diff line number Diff line change
@@ -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
perl -i -pe 's/\b(\d+)(?=\D*$)/$1+1/e' ./Sources/FigmaExport/FigmaExportCommand.swift
2 changes: 1 addition & 1 deletion Sources/FigmaExport/FigmaExportCommand.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 10569c2

Please sign in to comment.