File tree Expand file tree Collapse file tree 6 files changed +21
-9
lines changed Expand file tree Collapse file tree 6 files changed +21
-9
lines changed Original file line number Diff line number Diff line change 1- 1.6.48
1+ 1.6.50
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ PROJECT_NAME = "NumKey"
3232# This could be handy for archiving the generated documentation or
3333# if some version control system is used.
3434
35- PROJECT_NUMBER = 1.6.48
35+ PROJECT_NUMBER = 1.6.50
3636
3737# Using the PROJECT_BRIEF tag one can provide an optional one line description
3838# for a project that appears at the top of each page and should give viewer
Original file line number Diff line number Diff line change @@ -115,7 +115,6 @@ coverage: ensuretarget
115115.PHONY : deps
116116deps : ensuretarget
117117 curl --silent --show-error --fail --location https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(BINUTIL ) $(GOLANGCILINTVERSION )
118- $(GO ) install github.com/jstemmer/go-junit-report/v2@latest
119118
120119# Create the trget directories if missing
121120.PHONY : ensuretarget
@@ -142,7 +141,7 @@ linter:
142141 $(GOLANGCILINT ) run --max-issues-per-linter 0 --max-same-issues 0 $(SRCDIR ) /...
143142
144143.PHONY : mod
145- mod :
144+ mod : gotools
146145 $(GO ) mod download all
147146
148147# Run all tests and static analysis tools
@@ -164,6 +163,11 @@ test: ensuretarget
164163 -v $(SRCDIR ) $(TESTEXTRACMD )
165164 @echo -e " \n\n>>> END: Unit Tests <<<\n\n"
166165
166+ # Get the go tools
167+ .PHONY : gotools
168+ gotools :
169+ $(GO ) get -tool github.com/jstemmer/go-junit-report/v2@latest
170+
167171# Update everything
168172.PHONY : updateall
169173updateall : updatego updatelint updatemod
@@ -186,4 +190,5 @@ updatelint:
186190.PHONY : updatemod
187191updatemod :
188192 # $(GO) get $(shell $(GO) list -f '{{if not (or .Main .Indirect)}}{{.Path}}{{end}}' -m all)
189- $(GO ) get -t -u ./... && go mod tidy -compat=$(shell grep -oP 'go \K[0-9]+\.[0-9]+' ../go.mod)
193+ $(GO ) get -t -u ./... && \
194+ $(GO ) mod tidy -compat=$(shell grep -oP 'go \K[0-9]+\.[0-9]+' ../go.mod)
Original file line number Diff line number Diff line change 55toolchain go1.25.0
66
77require github.com/jstemmer/go-junit-report/v2 v2.1.0
8+
9+ tool github.com/jstemmer/go-junit-report/v2
Original file line number Diff line number Diff line change @@ -118,7 +118,6 @@ coverage: ensuretarget
118118.PHONY : deps
119119deps : ensuretarget
120120 curl --silent --show-error --fail --location https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(BINUTIL ) $(GOLANGCILINTVERSION )
121- $(GO ) install github.com/jstemmer/go-junit-report/v2@latest
122121
123122# Create the trget directories if missing
124123.PHONY : ensuretarget
@@ -145,7 +144,7 @@ linter:
145144 $(GOLANGCILINT ) run --max-issues-per-linter 0 --max-same-issues 0 $(SRCDIR ) /...
146145
147146.PHONY : mod
148- mod :
147+ mod : gotools
149148 $(GO ) mod download all
150149
151150# Run all tests and static analysis tools
@@ -167,6 +166,11 @@ test: ensuretarget
167166 -v $(SRCDIR ) $(TESTEXTRACMD )
168167 @echo -e " \n\n>>> END: Unit Tests <<<\n\n"
169168
169+ # Get the go tools
170+ .PHONY : gotools
171+ gotools :
172+ $(GO ) get -tool github.com/jstemmer/go-junit-report/v2@latest
173+
170174# Update everything
171175.PHONY : updateall
172176updateall : updatego updatelint updatemod
@@ -189,4 +193,5 @@ updatelint:
189193.PHONY : updatemod
190194updatemod :
191195 # $(GO) get $(shell $(GO) list -f '{{if not (or .Main .Indirect)}}{{.Path}}{{end}}' -m all)
192- $(GO ) get -t -u ./... && go mod tidy -compat=$(shell grep -oP 'go \K[0-9]+\.[0-9]+' ../go.mod)
196+ $(GO ) get -t -u ./... && \
197+ $(GO ) mod tidy -compat=$(shell grep -oP 'go \K[0-9]+\.[0-9]+' ../go.mod)
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ def run(self):
3030
3131setup (
3232 name = "numkey" ,
33- version = "1.6.48 .1" ,
33+ version = "1.6.50 .1" ,
3434 keywords = ("numkey E.164 shortcode lvn did encoding" ),
3535 description = "NumKey Bindings for Python" ,
3636 long_description = read ("../README.md" ),
You can’t perform that action at this time.
0 commit comments