Skip to content

Commit 4e02fe9

Browse files
committed
Fix go tools
1 parent a9f5cb5 commit 4e02fe9

File tree

7 files changed

+6
-25
lines changed

7 files changed

+6
-25
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.4.47
1+
9.4.48

c/doc/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ PROJECT_NAME = "Binsearch"
3232
# This could be handy for archiving the generated documentation or
3333
# if some version control system is used.
3434

35-
PROJECT_NUMBER = 9.4.47
35+
PROJECT_NUMBER = 9.4.48
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

go.mod

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,10 @@ go 1.25
44

55
toolchain go1.25.0
66

7-
require (
8-
github.com/jstemmer/go-junit-report/v2 v2.1.0
9-
github.com/stretchr/testify v1.10.0
10-
)
7+
require github.com/stretchr/testify v1.10.0
118

129
require (
1310
github.com/davecgh/go-spew v1.1.1 // indirect
1411
github.com/pmezard/go-difflib v1.0.0 // indirect
1512
gopkg.in/yaml.v3 v3.0.1 // indirect
1613
)
17-
18-
tool github.com/jstemmer/go-junit-report/v2

go.sum

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
22
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3-
github.com/google/go-cmp v0.5.8 h1:e6P7q2lk1O+qJJb4BtCQXlK8vWEO8V1ZeuEdJNOqZyg=
4-
github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
5-
github.com/jstemmer/go-junit-report/v2 v2.1.0 h1:X3+hPYlSczH9IMIpSC9CQSZA0L+BipYafciZUWHEmsc=
6-
github.com/jstemmer/go-junit-report/v2 v2.1.0/go.mod h1:mgHVr7VUo5Tn8OLVr1cKnLuEy0M92wdRntM99h7RkgQ=
73
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
84
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
95
github.com/stretchr/objx v0.5.2 h1:xuMeJ0Sdp5ZMRXx/aWO6RZxdr3beISkG5/G/aIRr3pY=

go/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ test: ensuretarget
165165
# Get the go tools
166166
.PHONY: gotools
167167
gotools:
168-
$(GO) get -tool github.com/jstemmer/go-junit-report/v2@latest
168+
$(GO) install github.com/jstemmer/go-junit-report/v2@latest
169169

170170
# Update everything
171171
.PHONY: updateall
@@ -187,6 +187,6 @@ updatelint:
187187

188188
# Update dependencies
189189
.PHONY: updatemod
190-
updatemod:
190+
updatemod: mod
191191
$(GO) get -t -u ./... && \
192192
$(GO) mod tidy -compat=$(shell grep -oP 'go \K[0-9]+\.[0-9]+' ../go.mod)

go/exttools/exttools.go

Lines changed: 0 additions & 10 deletions
This file was deleted.

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="binsearch",
33-
version="9.4.47.0",
33+
version="9.4.48.0",
3434
keywords=("binsearch"),
3535
description="Binsearch Bindings for Python",
3636
long_description=read("../README.md"),

0 commit comments

Comments
 (0)