Skip to content

Commit

Permalink
bump version in spec
Browse files Browse the repository at this point in the history
  • Loading branch information
yaacov committed Feb 20, 2020
1 parent ac931bb commit d1efc11
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,15 @@
# limitations under the License.
#

VERSION_GIT := $(shell git describe --tags)
VERSION ?= ${VERSION_GIT}

kubesql_src := $(wildcard ./cmd/kubesql/*.go)

all: kubesql

kubesql: $(kubesql_src)
go build -o kubesql $(kubesql_src)
go build -o kubesql -ldflags "-X main.version=${VERSION}" $(kubesql_src)

.PHONY: lint
lint:
Expand Down
2 changes: 1 addition & 1 deletion kubesql.spec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
%global import_path %{provider_prefix}

Name: %{repo}
Version: 0.1.8
Version: 0.1.9
Release: 1%{?dist}
Summary: kubesql uses sql like language to query the Kubernetes cluster manager
License: Apache
Expand Down

0 comments on commit d1efc11

Please sign in to comment.