forked from TrueCloudLab/rclone
Mark the compiled from source version with -DEV - fixes #627
This commit is contained in:
parent
b5faaf7116
commit
d7b79b4481
2 changed files with 2 additions and 2 deletions
2
Makefile
2
Makefile
|
@ -89,7 +89,7 @@ serve: website
|
||||||
tag: doc
|
tag: doc
|
||||||
@echo "Old tag is $(LAST_TAG)"
|
@echo "Old tag is $(LAST_TAG)"
|
||||||
@echo "New tag is $(NEW_TAG)"
|
@echo "New tag is $(NEW_TAG)"
|
||||||
echo -e "package fs\n\n// Version of rclone\nvar Version = \"$(NEW_TAG)\"\n" | gofmt > fs/version.go
|
echo -e "package fs\n\n// Version of rclone\nvar Version = \"$(NEW_TAG)-DEV\"\n" | gofmt > fs/version.go
|
||||||
perl -lpe 's/VERSION/${NEW_TAG}/g; s/DATE/'`date -I`'/g;' docs/content/downloads.md.in > docs/content/downloads.md
|
perl -lpe 's/VERSION/${NEW_TAG}/g; s/DATE/'`date -I`'/g;' docs/content/downloads.md.in > docs/content/downloads.md
|
||||||
git tag $(NEW_TAG)
|
git tag $(NEW_TAG)
|
||||||
@echo "Add this to changelog in docs/content/changelog.md"
|
@echo "Add this to changelog in docs/content/changelog.md"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package fs
|
package fs
|
||||||
|
|
||||||
// Version of rclone
|
// Version of rclone
|
||||||
var Version = "v1.32"
|
var Version = "v1.32-DEV"
|
||||||
|
|
Loading…
Reference in a new issue