Skip to content

Commit bddf746

Browse files
committed
Update dependencies
1 parent 37e63ea commit bddf746

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ help:
105105
@echo " make rpm : Build an RPM package for RedHat-like Linux distributions"
106106
@echo " make server : Start the development server"
107107
@echo " make test : Run unit tests"
108+
@echo " make versionup: Increase the version patch number"
108109
@echo ""
109110
@echo "To test and build everything from scratch:"
110111
@echo "make buildall"
@@ -268,3 +269,9 @@ test:
268269
uninstall:
269270
rm -rf $(PATHINSTBIN)
270271
rm -rf $(PATHINSTDOC)
272+
273+
# Increase the version patch number
274+
.PHONY: versionup
275+
versionup:
276+
echo ${VERSION} | gawk -F. '{printf("%d.%d.%d\n",$$1,$$2,(($$3+1)));}' > VERSION
277+

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.2.4
1+
2.2.5

0 commit comments

Comments
 (0)