forked from mirror/redis
Add version.go
This commit is contained in:
parent
047f907625
commit
818c0e0b2e
|
@ -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}
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
package redis
|
||||
|
||||
// Version is the current release version.
|
||||
func Version() string {
|
||||
return "0.0.0"
|
||||
}
|
Loading…
Reference in New Issue