From 6885e466ae11a0da4649fe0155ecb01d162697d5 Mon Sep 17 00:00:00 2001 From: Paul Vollmer Date: Tue, 6 Nov 2018 08:57:14 +0100 Subject: [PATCH] Bump Version to 0.1.1 --- Makefile | 8 ++++++-- main.go | 2 ++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9a5b9f5..0c36d6b 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=0.1.0 +VERSION=0.1.1 all: lint test @@ -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 diff --git a/main.go b/main.go index f488732..8c6b7f3 100644 --- a/main.go +++ b/main.go @@ -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("") }