Skip to content

Commit

Permalink
Bump Version to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
paulvollmer committed Nov 6, 2018
1 parent 5bfe2d8 commit 6885e46
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=0.1.0
VERSION=0.1.1

all: lint test

Expand All @@ -13,9 +13,13 @@ test: build
@./htmltable2csv -v
@./htmltable2csv -url "https://www.w3schools.com/html/html_tables.asp" -selector "#customers > tbody > tr" -csv data.csv

test-all:
@go test all
@make test

release:
git tag -a v${VERSION} -m "Version ${VERSION}"
git push origin v${VERSION}
goreleaser

.PHONY: all lint build test release
.PHONY: all lint build test test-all release
2 changes: 2 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ func usage() {
flag.PrintDefaults()
fmt.Println("\nExamples:")
fmt.Println(" htmltable2csv -url 'https://www.w3schools.com/html/html_tables.asp' -selector '#customers > tbody > tr' -csv data.csv")
fmt.Println("\nAuthor : Paul Vollmer")
fmt.Println("Repository : https://github.com/paulvollmer/htmltable2csv")
fmt.Println("")
}

Expand Down

0 comments on commit 6885e46

Please sign in to comment.