diff options
-rw-r--r-- | CHANGELOG | 4 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,6 +1,10 @@ imv Changelog ============= +v3.1.1 - 2019-06-22 + +* Adjusted Makefile to improve packaging on BSDs + v3.1.0 - 2019-06-17 * Added support for multiple image loaders, allowing imv to use libraries other @@ -71,7 +71,7 @@ TEST_SOURCES := test/list.c test/navigator.c OBJECTS := $(patsubst src/%.c,$(BUILDDIR)/%.o,$(SOURCES)) TESTS := $(patsubst test/%.c,$(BUILDDIR)/test_%,$(TEST_SOURCES)) -VERSION != git describe --dirty --always --tags 2> /dev/null || echo v3.1.0 +VERSION != git describe --dirty --always --tags 2> /dev/null || echo v3.1.1 override CPPFLAGS += -DIMV_VERSION=\""$(VERSION)"\" |