Skip to content

Commit 17ba008

Browse files
committed
Update documentation
1 parent 631536b commit 17ba008

File tree

6 files changed

+17
-19
lines changed

6 files changed

+17
-19
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ help:
2525
@echo "$(PROJECT) Makefile."
2626
@echo "The following commands are available:"
2727
@echo ""
28-
@echo " make c : Build and test the C version"
29-
@echo " make go : Build and test the GO version"
30-
@echo " make python : Build and test the Python version"
31-
@echo " make clean : Remove any build artifact"
32-
@echo " make tag : Tag the Git repository"
28+
@echo " make c : Build and test the C version"
29+
@echo " make go : Build and test the GO version"
30+
@echo " make python : Build and test the Python version"
31+
@echo " make clean : Remove any build artifact"
32+
@echo " make tag : Tag the Git repository"
3333
@echo ""
3434

3535
all: c go python

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.4.16
1+
9.4.17

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.16
35+
PROJECT_NUMBER = 9.4.17
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

c/src/binsearch/binsearch.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// @author Nicola Asuni <info@tecnick.com>
77
// @link https://github.com/tecnickcom/binsearch
88
// @license MIT (see LICENSE file)
9-
// @copyright (c) 2017-2023 Nicola Asuni - Tecnick.com
9+
// @copyright (c) 2017-2024 Nicola Asuni - Tecnick.com
1010

1111
/**
1212
* @file binsearch.h
@@ -979,8 +979,6 @@ static inline void parse_info_feather(mmfile_t *mf)
979979
*
980980
* @param file Path to the file to map.
981981
* @param mf Structure containing the memory mapped file.
982-
*
983-
* @return Returns the memory-mapped file descriptors.
984982
*/
985983
static inline void mmap_binfile(const char *file, mmfile_t *mf)
986984
{

go/Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@ help:
7272
@echo "GOPATH=$(GOPATH)"
7373
@echo "The following commands are available:"
7474
@echo ""
75-
@echo " make clean : Remove any build artifact"
76-
@echo " make coverage : Generate the coverage report"
77-
@echo " make deps : Get dependencies"
78-
@echo " make format : Format the source code"
79-
@echo " make linter : Check code against multiple linters"
80-
@echo " make mod : Download dependencies"
81-
@echo " make qa : Run all tests and static analysis tools"
82-
@echo " make test : Run unit tests"
75+
@echo " make clean : Remove any build artifact"
76+
@echo " make coverage : Generate the coverage report"
77+
@echo " make deps : Get dependencies"
78+
@echo " make format : Format the source code"
79+
@echo " make linter : Check code against multiple linters"
80+
@echo " make mod : Download dependencies"
81+
@echo " make qa : Run all tests and static analysis tools"
82+
@echo " make test : Run unit tests"
8383
@echo ""
8484
@echo "Use DEVMODE=LOCAL for human friendly output."
8585
@echo ""

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

0 commit comments

Comments
 (0)