diff --git a/Makefile b/Makefile index 89e25b2..a4d0315 100644 --- a/Makefile +++ b/Makefile @@ -34,6 +34,7 @@ test: test-run-test-fr test: test-cleanup.2 test-start: + @echo "" docker run -d --name languagetool -p 8010:8010 $(IMAGENAME):latest sleep 6 @@ -41,12 +42,14 @@ test-print-ip-address: @echo "IP address of languagetools docker container: $(TESTIPADDRESS)" test-run-test-lang: + @echo "" curl \ -X GET \ --header 'Accept: application/json' \ 'http://$(TESTIPADDRESS):8010/v2/languages' test-run-test-en: + @echo "" curl \ -X POST \ --header 'Content-Type: application/x-www-form-urlencoded' \ @@ -55,6 +58,7 @@ test-run-test-en: 'http://$(TESTIPADDRESS):8010/v2/check' test-run-test-fr: + @echo "" curl -X POST \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Accept: application/json' \ @@ -63,6 +67,7 @@ test-run-test-fr: .PHONY: test-cleanup test-cleanup.%: + @echo "" -docker container stop languagetool -docker container rm languagetool diff --git a/Makefile.version b/Makefile.version index b5c1ec2..5d4a055 100644 --- a/Makefile.version +++ b/Makefile.version @@ -1,5 +1,5 @@ # SPDX-License-Identifier: LGPL-3.0-or-later -VERSION := 6.4 +VERSION := 6.5 UNPACKED_VERSION := $(shell echo $(VERSION) | sed -e 's/\([0-9]\+\.[0-9]\+\)\(.*\)/\1/') BUILDARG_VERSION := --build-arg VERSION=$(VERSION) --build-arg UNPACKED_VERSION=$(UNPACKED_VERSION) IMAGENAME := docker.io/silviof/docker-languagetool