cmake_minimum_required(VERSION 3.10)
project(SimpleArchiver C)
-set(SimpleArchiver_VERSION 1.18)
+set(SimpleArchiver_VERSION 1.19)
set(SimpleArchiver_SOURCES
src/main.c
## Upcoming Changes
+## Version 1.19
+
+Fix bug where writes fail sometimes (due to checking against wrong byte count
+(read instead of write)).
+
+Refactoring of error handling.
+
## Version 1.18
Add file format version 4 to support more than 4 billion symlinks, and more
COSMOCC ?= ${HOME}/Downloads/cosmocc/bin/cosmocc
-VERSION_STR := $(shell /usr/bin/git describe --long --tags || /usr/bin/echo 1.18)
+VERSION_STR := $(shell /usr/bin/git describe --long --tags || /usr/bin/echo 1.19)
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.18"
+#define SIMPLE_ARCHIVER_VERSION_STR "1.19"
#endif
#endif