Skip to content

Commit

Permalink
Update version and Makefile menu formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaasuni-vonage committed Sep 12, 2024
1 parent 5a94bf3 commit 85c85ea
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 44 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.16
1.6.17
22 changes: 11 additions & 11 deletions c/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,17 @@ help:
@echo "$(PROJECT) C Makefile."
@echo "The following commands are available:"
@echo ""
@echo " make build : Build the library"
@echo " make clean : Remove any build artifact"
@echo " make deb : Build a DEB package"
@echo " make doc : Generate source code documentation"
@echo " make format : Format the source code"
@echo " make install : Install the library"
@echo " make rpm : Build an RPM package"
@echo " make test : Run the unit tests"
@echo " make tidy : Check the code using clang-tidy"
@echo " make uninstall : Uninstall the library"
@echo " make version : Set version from VERSION file"
@echo " make build : Build the library"
@echo " make clean : Remove any build artifact"
@echo " make deb : Build a DEB package"
@echo " make doc : Generate source code documentation"
@echo " make format : Format the source code"
@echo " make install : Install the library"
@echo " make rpm : Build an RPM package"
@echo " make test : Run the unit tests"
@echo " make tidy : Check the code using clang-tidy"
@echo " make uninstall : Uninstall the library"
@echo " make version : Set version from VERSION file"
@echo ""

.PHONY: all
Expand Down
16 changes: 8 additions & 8 deletions cgo/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
18 changes: 9 additions & 9 deletions go/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ 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 modupdate : Update 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 modupdate : Update 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
8 changes: 4 additions & 4 deletions java/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ help:
@echo "$(PROJECT) Java Makefile."
@echo "The following commands are available:"
@echo ""
@echo " make build : Build the library"
@echo " make clean : Remove any build artifact"
@echo " make test : Run the unit tests against source code"
@echo " make updategradle : Update gradle wrapper to the latest version"
@echo " make build : Build the library"
@echo " make clean : Remove any build artifact"
@echo " make test : Run the unit tests against source code"
@echo " make updategradle : Update gradle wrapper to the latest version"
@echo ""

all: clean build test
Expand Down
8 changes: 4 additions & 4 deletions javascript/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ help:
@echo "Requires: node-js and uglify-js."
@echo "The following commands are available:"
@echo ""
@echo " make build : Build and test a minified version of the library"
@echo " make clean : Remove any build artifact"
@echo " make format : Format the source code"
@echo " make test : Run the unit tests against source code"
@echo " make build : Build and test a minified version of the library"
@echo " make clean : Remove any build artifact"
@echo " make format : Format the source code"
@echo " make test : Run the unit tests against source code"
@echo ""

all: clean format test build
Expand Down
14 changes: 7 additions & 7 deletions python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ help:
@echo "${PROJECT} Python Makefile."
@echo "The following commands are available:"
@echo ""
@echo " make build : Build the library"
@echo " make clean : Remove any build artifact"
@echo " make doc : Generate documentation"
@echo " make format : Format the source code"
@echo " make test : Test the library"
@echo " make venv : Create a virtual environment"
@echo " make version : Set the version from VERSION file"
@echo " make build : Build the library"
@echo " make clean : Remove any build artifact"
@echo " make doc : Generate documentation"
@echo " make format : Format the source code"
@echo " make test : Test the library"
@echo " make venv : Create a virtual environment"
@echo " make version : Set the version from VERSION file"
@echo ""

all: clean venv build test
Expand Down

0 comments on commit 85c85ea

Please sign in to comment.