Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaasuni committed Sep 12, 2024
1 parent 631536b commit 17ba008
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 19 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.4.16
9.4.17
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 = "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
Expand Down
4 changes: 1 addition & 3 deletions c/src/binsearch/binsearch.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// @author Nicola Asuni <[email protected]>
// @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
Expand Down 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
16 changes: 8 additions & 8 deletions go/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
Expand Down
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="binsearch",
version="9.4.16.0",
version="9.4.17.0",
keywords=("binsearch"),
description="Binsearch Bindings for Python",
long_description=read("../README.md"),
Expand Down

0 comments on commit 17ba008

Please sign in to comment.