diff --git a/Makefile b/Makefile index 9e500c9..e2f952c 100644 --- a/Makefile +++ b/Makefile @@ -25,11 +25,11 @@ help: @echo "$(PROJECT) Makefile." @echo "The following commands are available:" @echo "" - @echo " make c : Build and test the C version" - @echo " make go : Build and test the GO version" - @echo " make python : Build and test the Python version" - @echo " make clean : Remove any build artifact" - @echo " make tag : Tag the Git repository" + @echo " make c : Build and test the C version" + @echo " make go : Build and test the GO version" + @echo " make python : Build and test the Python version" + @echo " make clean : Remove any build artifact" + @echo " make tag : Tag the Git repository" @echo "" all: c go python diff --git a/VERSION b/VERSION index d0adaa3..1d02468 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -9.4.16 +9.4.17 diff --git a/c/doc/Doxyfile b/c/doc/Doxyfile index a094183..5cbe0ae 100644 --- a/c/doc/Doxyfile +++ b/c/doc/Doxyfile @@ -32,7 +32,7 @@ PROJECT_NAME = "Binsearch" # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 9.4.16 +PROJECT_NUMBER = 9.4.17 # 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 diff --git a/c/src/binsearch/binsearch.h b/c/src/binsearch/binsearch.h index cf80c4f..1ac5e4c 100644 --- a/c/src/binsearch/binsearch.h +++ b/c/src/binsearch/binsearch.h @@ -6,7 +6,7 @@ // @author Nicola Asuni // @link https://github.com/tecnickcom/binsearch // @license MIT (see LICENSE file) -// @copyright (c) 2017-2023 Nicola Asuni - Tecnick.com +// @copyright (c) 2017-2024 Nicola Asuni - Tecnick.com /** * @file binsearch.h @@ -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) { diff --git a/go/Makefile b/go/Makefile index cf9f1a7..30a9431 100644 --- a/go/Makefile +++ b/go/Makefile @@ -72,14 +72,14 @@ help: @echo "GOPATH=$(GOPATH)" @echo "The following commands are available:" @echo "" - @echo " make clean : Remove any build artifact" - @echo " make coverage : Generate the coverage report" - @echo " make deps : Get dependencies" - @echo " make format : Format the source code" - @echo " make linter : Check code against multiple linters" - @echo " make mod : Download dependencies" - @echo " make qa : Run all tests and static analysis tools" - @echo " make test : Run unit tests" + @echo " make clean : Remove any build artifact" + @echo " make coverage : Generate the coverage report" + @echo " make deps : Get dependencies" + @echo " make format : Format the source code" + @echo " make linter : Check code against multiple linters" + @echo " make mod : Download dependencies" + @echo " make qa : Run all tests and static analysis tools" + @echo " make test : Run unit tests" @echo "" @echo "Use DEVMODE=LOCAL for human friendly output." @echo "" diff --git a/python/setup.py b/python/setup.py index 099ea4c..3837935 100644 --- a/python/setup.py +++ b/python/setup.py @@ -30,7 +30,7 @@ def run(self): setup( name="binsearch", - version="9.4.16.0", + version="9.4.17.0", keywords=("binsearch"), description="Binsearch Bindings for Python", long_description=read("../README.md"),