Skip to content

Commit

Permalink
Add version.go
Browse files Browse the repository at this point in the history
  • Loading branch information
vmihailenco committed Aug 12, 2021
1 parent 047f907 commit 818c0e0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ sed --in-place "s/\(return \)\"[^\"]*\"/\1\"${TAG#v}\"/" ./version.go

git checkout -b release/${TAG} master
git add -u
git commit -m "Release $TAG"
git commit -m "Release $TAG (release.sh)"
git push origin release/${TAG}
6 changes: 6 additions & 0 deletions version.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package redis

// Version is the current release version.
func Version() string {
return "0.0.0"
}

0 comments on commit 818c0e0

Please sign in to comment.