Skip to content

Commit 6201824

Browse files
chore(deps): update dependency go to v1.24.5 (main) (#88)
* chore(deps): update dependency go to v1.24.5 * Update all dependencies and fix minor warnings --------- Co-authored-by: mend-for-github-com[bot] <50673670+mend-for-github-com[bot]@users.noreply.github.com> Co-authored-by: nicolaasuni-vonage <[email protected]>
1 parent d5abb03 commit 6201824

File tree

13 files changed

+14
-12
lines changed

13 files changed

+14
-12
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.42
1+
1.6.43

c/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ option(BUILD_SHARED_LIB "Build a shared library" ON)
2626
if(CMAKE_COMPILER_IS_GNUCC)
2727
message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
2828
execute_process(COMMAND ${CMAKE_C_COMPILER} -dumpversion OUTPUT_VARIABLE GCC_VERSION)
29-
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D VERSION='\"${PROJECT_VERSION}\"' -s -pedantic -std=c17 -Wall -Wextra -Wno-strict-prototypes -Wcast-align -Wundef -Wformat-security")
29+
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D VERSION='\"${PROJECT_VERSION}\"' -s -pedantic -std=c17 -Wall -Wextra -Wno-strict-prototypes -Wcast-align -Wundef -Wformat -Wformat-security")
3030

3131
if (GCC_VERSION VERSION_GREATER 4.8 OR GCC_VERSION VERSION_EQUAL 4.8)
3232
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wshadow")

c/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ endif
195195
# Test C code compatibility with C++
196196
.PHONY: testcpp
197197
testcpp:
198-
find ./src/numkey -type f -name '*.h' -exec gcc -c -pedantic -Werror -Wall -Wextra -Wcast-align -Wundef -Wformat-security -std=c++17 -x c++ -o /dev/null {} \;
198+
find ./src/numkey -type f -name '*.h' -exec gcc -c -pedantic -Werror -Wall -Wextra -Wcast-align -Wundef -Wformat -Wformat-security -std=c++17 -x c++ -o /dev/null {} \;
199199

200200
# use clang-tidy
201201
.PHONY: tidy

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.42
35+
PROJECT_NUMBER = 1.6.43
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/.golangci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ linters:
2020
- tagliatelle
2121
- testpackage
2222
- varnamelen
23+
- wsl
2324
settings:
2425
depguard:
2526
rules:

cgo/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=v2.1.6
53+
GOLANGCILINTVERSION=v2.2.1
5454

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

cgo/src/numkey.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
package numkey
99

1010
/*
11-
#cgo CFLAGS: -O3 -pedantic -std=c99 -Wextra -Wno-strict-prototypes -Wcast-align -Wundef -Wformat-security -Wshadow
11+
#cgo CFLAGS: -O3 -pedantic -std=c99 -Wextra -Wno-strict-prototypes -Wcast-align -Wundef -Wformat -Wformat-security -Wshadow
1212
#include <stdlib.h>
1313
#include <inttypes.h>
1414
#include "../../c/src/numkey/hex.h"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/Vonage/numkey
22

33
go 1.24
44

5-
toolchain go1.24.4
5+
toolchain go1.24.5
66

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

go/.golangci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ linters:
2020
- tagliatelle
2121
- testpackage
2222
- varnamelen
23+
- wsl
2324
settings:
2425
depguard:
2526
rules:

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=v2.1.6
53+
GOLANGCILINTVERSION=v2.2.1
5454

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

0 commit comments

Comments
 (0)