Skip to content

Commit

Permalink
[AUTOPR] Automatic updates (Vonage#50)
Browse files Browse the repository at this point in the history
* Remove disabled travis config

* Group Mend PRs

* Uodate Go dependencies

---------

Co-authored-by: nicolaasuni-vonage <[email protected]>
  • Loading branch information
github-actions[bot] and nicolaasuni-vonage committed Sep 11, 2024
1 parent 82263c3 commit 5a94bf3
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 73 deletions.
15 changes: 14 additions & 1 deletion .mend
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,18 @@
"remediateSettings": {
"timezone": "UTC",
"dependencyDashboardAutoclose": true
}
},
"packageRules": [
{
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch",
"matchPackageNames": [
"*"
],
"matchUpdateTypes": [
"minor",
"patch"
]
}
]
}
62 changes: 0 additions & 62 deletions .travis.yml.off

This file was deleted.

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.15
1.6.16
2 changes: 1 addition & 1 deletion c/doc/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ PROJECT_NAME = "NumKey"
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = 1.6.15
PROJECT_NUMBER = 1.6.16

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer
Expand Down
4 changes: 1 addition & 3 deletions c/src/numkey/binsearch.h
Original file line number Diff line number Diff line change
Expand Up @@ -979,8 +979,6 @@ static inline void parse_info_feather(mmfile_t *mf)
*
* @param file Path to the file to map.
* @param mf Structure containing the memory mapped file.
*
* @return Returns the memory-mapped file descriptors.
*/
static inline void mmap_binfile(const char *file, mmfile_t *mf)
{
Expand Down Expand Up @@ -1041,4 +1039,4 @@ static inline int munmap_binfile(mmfile_t mf)
return close(mf.fd);
}

#endif // NUMKEY_BINSEARCH_H
#endif // NUMKEY_BINSEARCH_H
2 changes: 1 addition & 1 deletion cgo/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ GOFMT=$(shell which gofmt)
GOTEST=GOPATH=$(GOPATH) $(shell which gotest)
GODOC=GOPATH=$(GOPATH) $(shell which godoc)
GOLANGCILINT=$(BINUTIL)/golangci-lint
GOLANGCILINTVERSION=v1.60.3
GOLANGCILINTVERSION=v1.61.0

# Directory containing the source code
SRCDIR=./src
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/Vonage/numkey

go 1.23

toolchain go1.23.0
toolchain go1.23.1

require (
github.com/jstemmer/go-junit-report/v2 v2.1.0
Expand Down
4 changes: 2 additions & 2 deletions go/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ GOFMT=$(shell which gofmt)
GOTEST=GOPATH=$(GOPATH) $(shell which gotest)
GODOC=GOPATH=$(GOPATH) $(shell which godoc)
GOLANGCILINT=$(BINUTIL)/golangci-lint
GOLANGCILINTVERSION=v1.60.3
GOLANGCILINTVERSION=v1.61.0

# Directory containing the source code
SRCDIR=./src
Expand Down Expand Up @@ -150,7 +150,7 @@ mod:
.PHONY: modupdate
modupdate:
# $(GO) get $(shell $(GO) list -f '{{if not (or .Main .Indirect)}}{{.Path}}{{end}}' -m all)
$(GO) get -t -u -d ./... && go mod tidy -compat=$(shell grep -oP 'go \K[0-9]+\.[0-9]+' ../go.mod)
$(GO) get -t -u ./... && go mod tidy -compat=$(shell grep -oP 'go \K[0-9]+\.[0-9]+' ../go.mod)

# Run all tests and static analysis tools
.PHONY: qa
Expand Down
Binary file modified java/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def run(self):

setup(
name="numkey",
version="1.6.15.1",
version="1.6.16.1",
keywords=("numkey E.164 shortcode lvn did encoding"),
description="NumKey Bindings for Python",
long_description=read("../README.md"),
Expand Down

0 comments on commit 5a94bf3

Please sign in to comment.