Skip to content

Commit

Permalink
Fix internal version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
ninaspitfire committed Feb 9, 2016
1 parent 3d19484 commit 43ca39b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ ifndef FACTBEAT_RELEASE_VERSION
@echo "Please try something like 'FACTBEAT_RELEASE_VERSION=0.1.0 make release'."
false
endif
grep -qF 'Version = "$(FACTBEAT_RELEASE_VERSION)"' main.go

release: validate-release clean build test
docker-compose run builder tar -czvf factbeat-$(FACTBEAT_RELEASE_VERSION)-x86_64.tar.gz \
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
)

var Name = "factbeat"
var Version = "0.1.0"
var Version = "0.1.2"

func main() {
beat.Run(Name, Version, factbeat.New())
Expand Down

0 comments on commit 43ca39b

Please sign in to comment.