Skip to content

Commit 5936174

Browse files
committed
fix: missing variable declaration
1 parent 774aef2 commit 5936174

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/git-version.cr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ module GitVersion
126126
return {previous_tag, previous_version}
127127
end
128128

129-
def get_previous_version: String
129+
def get_previous_version : String
130130
lt, lv = get_previous_tag_and_version
131131
return lt ? lt : add_prefix_suffix(lv.to_s)
132132
end

src/main.cr

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ release_branch = "master"
1010
minor_identifier = "feature:"
1111
major_identifier = "breaking:"
1212
prefix = ""
13+
suffix = ""
1314
log_paths = ""
1415

1516
folder = FileUtils.pwd

0 commit comments

Comments
 (0)