From f2eea12a77ed2195492dfb7e34541bd55fbfc82c Mon Sep 17 00:00:00 2001 From: nicolaasuni Date: Thu, 3 Oct 2024 15:06:04 +0100 Subject: [PATCH] Add newline on VERSION file --- Makefile | 3 +-- VERSION | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 21efd9a..7433a62 100644 --- a/Makefile +++ b/Makefile @@ -233,5 +233,4 @@ updatemod: # Increase the patch number in the VERSION file .PHONY: versionup versionup: - echo ${VERSION} | gawk -F. '{printf("%d.%d.%d",$$1,$$2,(($$3+1)));}' > VERSION - $(MAKE) version + echo ${VERSION} | gawk -F. '{printf("%d.%d.%d\n",$$1,$$2,(($$3+1)));}' > VERSION diff --git a/VERSION b/VERSION index b112f91..c787b21 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.21 +1.0.22