File tree Expand file tree Collapse file tree 13 files changed +14
-12
lines changed Expand file tree Collapse file tree 13 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 1- 1.6.42
1+ 1.6.43
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ option(BUILD_SHARED_LIB "Build a shared library" ON)
2626if (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" )
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ endif
195195# Test C code compatibility with C++
196196.PHONY : testcpp
197197testcpp :
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
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.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
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ linters:
2020 - tagliatelle
2121 - testpackage
2222 - varnamelen
23+ - wsl
2324 settings :
2425 depguard :
2526 rules :
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ GOFMT=$(shell which gofmt)
5050GOTEST=GOPATH =$(GOPATH ) $(shell which gotest)
5151GODOC=GOPATH =$(GOPATH ) $(shell which godoc)
5252GOLANGCILINT =$(BINUTIL ) /golangci-lint
53- GOLANGCILINTVERSION =v2.1.6
53+ GOLANGCILINTVERSION =v2.2.1
5454
5555# Directory containing the source code
5656SRCDIR =./src
Original file line number Diff line number Diff line change 88package 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"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module github.com/Vonage/numkey
22
33go 1.24
44
5- toolchain go1.24.4
5+ toolchain go1.24.5
66
77require (
88 github.com/jstemmer/go-junit-report/v2 v2.1.0
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ linters:
2020 - tagliatelle
2121 - testpackage
2222 - varnamelen
23+ - wsl
2324 settings :
2425 depguard :
2526 rules :
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ GOFMT=$(shell which gofmt)
5050GOTEST=GOPATH =$(GOPATH ) $(shell which gotest)
5151GODOC=GOPATH =$(GOPATH ) $(shell which godoc)
5252GOLANGCILINT =$(BINUTIL ) /golangci-lint
53- GOLANGCILINTVERSION =v2.1.6
53+ GOLANGCILINTVERSION =v2.2.1
5454
5555# Directory containing the source code
5656SRCDIR =./src
You can’t perform that action at this time.
0 commit comments