Skip to content

Commit aece878

Browse files
[AUTOPR] Automatic updates (#94)
* Update dependencies --------- Co-authored-by: nicolaasuni-vonage <[email protected]>
1 parent 09cea66 commit aece878

File tree

6 files changed

+21
-9
lines changed

6 files changed

+21
-9
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.48
1+
1.6.50

c/doc/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

cgo/Makefile

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ coverage: ensuretarget
115115
.PHONY: deps
116116
deps: 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
169173
updateall: updatego updatelint updatemod
@@ -186,4 +190,5 @@ updatelint:
186190
.PHONY: updatemod
187191
updatemod:
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)

go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ go 1.25
55
toolchain go1.25.0
66

77
require github.com/jstemmer/go-junit-report/v2 v2.1.0
8+
9+
tool github.com/jstemmer/go-junit-report/v2

go/Makefile

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ coverage: ensuretarget
118118
.PHONY: deps
119119
deps: 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
172176
updateall: updatego updatelint updatemod
@@ -189,4 +193,5 @@ updatelint:
189193
.PHONY: updatemod
190194
updatemod:
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)

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def run(self):
3030

3131
setup(
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"),

0 commit comments

Comments
 (0)