diff --git a/GNUmakefile b/GNUmakefile index 8539857..6506648 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -116,7 +116,7 @@ CFLAGS += -DSSL_SUPPORT LDLIBS += -lssl endif -GIT_VERSION=$(shell git describe --tags 2>/dev/null || echo "") +GIT_VERSION=$(shell git describe 2>/dev/null || echo "") GIT_REVISION=$(shell git show --abbrev-commit 2>/dev/null | head -n 1 | cut -f 2 -d " " || echo "") OLD_REVISION=$(shell grep GIT_REVISION revision.h 2>/dev/null | cut -f 3 -d " " | tr -d "\"") diff --git a/version.h b/version.h index 512f09a..66c9c2e 100644 --- a/version.h +++ b/version.h @@ -1,11 +1,11 @@ #include "revision.h" #ifndef PRODUCT -#define PRODUCT "uHub" +#define PRODUCT "uhub" #endif #ifndef VERSION -#define VERSION "0.3.0" +#define VERSION "0.3.1" #endif #ifndef GIT_REVISION