Skip to content

Commit 9147147

Browse files
committed
Update Go to 1.23.3
1 parent 0336f3d commit 9147147

File tree

6 files changed

+5
-7
lines changed

6 files changed

+5
-7
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.4.20
1+
9.4.21

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.20
35+
PROJECT_NUMBER = 9.4.21
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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/tecnickcom/binsearch
22

33
go 1.23
44

5-
toolchain go1.23.2
5+
toolchain go1.23.3
66

77
require (
88
github.com/jstemmer/go-junit-report/v2 v2.1.0

go/.golangci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,8 @@ linters:
5858
enable-all: true
5959
disable:
6060
- depguard # Go linter that checks if package imports are in a list of acceptable packages [fast: true, auto-fix: false]
61-
- execinquery # execinquery is a linter about query string checker in Query function which reads your Go src files and warning it finds [fast: false, auto-fix: false]
6261
- exhaustruct # Checks if all structure fields are initialized [fast: false, auto-fix: false]
6362
- err113 # Go linter to check the errors handling expressions [fast: false, auto-fix: false]
64-
- gomnd # An analyzer to detect magic numbers. [fast: true, auto-fix: false]
6563
- ireturn # Accept Interfaces, Return Concrete Types [fast: false, auto-fix: false]
6664
- lll # Reports long lines [fast: true, auto-fix: false]
6765
- musttag # enforce field tags in (un)marshaled structs [fast: false, auto-fix: false]

go/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ GOFMT=$(shell which gofmt)
5050
GOTEST=GOPATH=$(GOPATH) $(shell which gotest)
5151
GODOC=GOPATH=$(GOPATH) $(shell which godoc)
5252
GOLANGCILINT=$(BINUTIL)/golangci-lint
53-
GOLANGCILINTVERSION=v1.61.0
53+
GOLANGCILINTVERSION=v1.62.0
5454

5555
# Directory containing the source code
5656
SRCDIR=./src

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

0 commit comments

Comments
 (0)