]> git.seodisparate.com - SimpleArchiver/commitdiff
Bump version to 1.20
authorStephen Seo <seo.disparate@gmail.com>
Fri, 18 Apr 2025 07:42:53 +0000 (16:42 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Fri, 18 Apr 2025 07:42:53 +0000 (16:42 +0900)
CMakeLists.txt
Changelog.md
cosmopolitan/Makefile
src/version.h

index 9dd4e39f4d3ace5588c8b59e53d157fa1b32c747..c2afe3c202d7c261d15fac0e249eff3aa7ab0bec 100644 (file)
@@ -1,7 +1,7 @@
 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
index 118e345eed50b70749f8df819bb3f85f1c8f7af6..3f73b0d345ac1dfe701e3a8b37bd9c6b942be5df 100644 (file)
@@ -2,14 +2,20 @@
 
 ## 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
index 8ec68d9db1b6db72d8f84b5bfb1d8dc22d9ff83a..0ad84cad9db10a59388ab3c7a303955f379fc988 100644 (file)
@@ -1,6 +1,6 @@
 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}\"
 
index 86c9a88ea111a510018d17503e9f21cb27887a55..dfb44207c5e15c99aa5111f205caf8ae421bf1c4 100644 (file)
@@ -20,7 +20,7 @@
 #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