cmake_minimum_required(VERSION 3.10)
project(SimpleArchiver C)
-set(SimpleArchiver_VERSION 1.19)
+set(SimpleArchiver_VERSION 1.20)
set(SimpleArchiver_SOURCES
src/main.c
## Upcoming Changes
-Fix erronous usage of return value from `fcntl(...)`.
-
## Alternate Changes
(Alternate Changes are changes that are not in `main` or `dev`.)
Attempt fix https://github.com/Stephen-Seo/SimpleArchiver/issues/6 .
+## Version 1.20
+
+Fix erronous usage of return value from `fcntl(...)`.
+
+Cleanup of warnings that show when building for 32-bit systems, including
+integer conversions between `size_t` and `uint64_t` (`size_t` is 4 bytes on
+32-bit systems and 8 bytes on 64-bit systems).
+
## Version 1.19
Fix bug where writes fail sometimes (due to checking against wrong byte count
COSMOCC ?= ${HOME}/Downloads/cosmocc/bin/cosmocc
-VERSION_STR := $(shell /usr/bin/git describe --long --tags || /usr/bin/echo 1.19)
+VERSION_STR := $(shell /usr/bin/git describe --long --tags || /usr/bin/echo 1.20)
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.19"
+#define SIMPLE_ARCHIVER_VERSION_STR "1.20"
#endif
#endif