]> git.seodisparate.com - SimpleArchiver/commitdiff
v1.19, fix write error, refactor error handling
authorStephen Seo <seo.disparate@gmail.com>
Wed, 9 Apr 2025 09:56:22 +0000 (18:56 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Wed, 9 Apr 2025 09:56:22 +0000 (18:56 +0900)
CMakeLists.txt
Changelog.md
cosmopolitan/Makefile
src/version.h

index 80bf9caf4cb6b6664af0b2ebe0bd0884f2e430fd..9dd4e39f4d3ace5588c8b59e53d157fa1b32c747 100644 (file)
@@ -1,7 +1,7 @@
 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
index d447c014b8b512ca539d39e9da98228627406f0f..ce27603c68c1b81d66418f1679648ec414ad0adc 100644 (file)
@@ -2,6 +2,13 @@
 
 ## 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
index 9d4abde9a3f5adbe136ea4520b459789232825a9..8ec68d9db1b6db72d8f84b5bfb1d8dc22d9ff83a 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.18)
+VERSION_STR := $(shell /usr/bin/git describe --long --tags || /usr/bin/echo 1.19)
 
 OTHER_FLAGS := -DSIMPLE_ARCHIVER_VERSION_STR=\"${VERSION_STR}\"
 
index bba8670e4f1f4cfd48c095b957166c8cdaceb14d..86c9a88ea111a510018d17503e9f21cb27887a55 100644 (file)
@@ -20,7 +20,7 @@
 #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