cmake_minimum_required(VERSION 3.10)
project(SimpleArchiver C)
-set(SimpleArchiver_VERSION 1.13)
+set(SimpleArchiver_VERSION 1.14)
set(SimpleArchiver_SOURCES
src/main.c
## Upcoming Changes
+## Version 1.14
+
+Fix not setting empty directory permissions when extracted.
+The previous behavior just used the default (or forced) permissions.
+
## Version 1.13
Stricter default directory permissions when directories are created.
COSMOCC ?= ${HOME}/Downloads/cosmocc/bin/cosmocc
-VERSION_STR := $(shell /usr/bin/git describe --long --tags || /usr/bin/echo 1.13)
+VERSION_STR := $(shell /usr/bin/git describe --long --tags || /usr/bin/echo 1.14)
OTHER_FLAGS := -DSIMPLE_ARCHIVER_VERSION_STR=\"${VERSION_STR}\"
#define SEODISPARATE_COM_SIMPLE_ARCHIVER_VERSION_H_
#ifndef SIMPLE_ARCHIVER_VERSION_STR
-#define SIMPLE_ARCHIVER_VERSION_STR "1.13"
+#define SIMPLE_ARCHIVER_VERSION_STR "1.14"
#endif
#endif