]> git.seodisparate.com - SimpleArchiver/commitdiff
Update Version 1.13 1.13
authorStephen Seo <seo.disparate@gmail.com>
Mon, 3 Feb 2025 07:46:23 +0000 (16:46 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Mon, 3 Feb 2025 07:46:57 +0000 (16:46 +0900)
CMakeLists.txt
Changelog.md
cosmopolitan/Makefile
src/version.h

index 4beecc3caf46ccc6b15f4534d785a1cca5b35f54..4b3b20acd5ec01b8edade24c7f95acaf373e1669 100644 (file)
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.10)
 project(SimpleArchiver C)
 
-set(SimpleArchiver_VERSION 1.12)
+set(SimpleArchiver_VERSION 1.13)
 
 set(SimpleArchiver_SOURCES
     src/main.c
index 4862f3ed16fa4544d95062b170cc369a9b211b19..36aebf35beb8ae3af06252e0186b4b1ab837f853 100644 (file)
@@ -2,6 +2,13 @@
 
 ## Upcoming Changes
 
+## Version 1.13
+
+Stricter default directory permissions when directories are created.
+
+  - Previous impl used: `rwxrwxr-x`
+  - Current impl uses: `rwxr-xr-x`
+
 ## Version 1.12
 
 Fix bug where file formats 2 and 3 would create directories in an archive when
index ef2e5e60dccbd6f0fd311c9b5519d81f50928040..3648a2bc775c9dda12b8b9df53835fa96080e88d 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.12)
+VERSION_STR := $(shell /usr/bin/git describe --long --tags || /usr/bin/echo 1.13)
 
 OTHER_FLAGS := -DSIMPLE_ARCHIVER_VERSION_STR=\"${VERSION_STR}\"
 
index 3690a20ad48361282fa1c2c6d0f419740a287abe..e61a8b3f309b787cf9efb71a3dc23c4f26079d00 100644 (file)
@@ -20,7 +20,7 @@
 #define SEODISPARATE_COM_SIMPLE_ARCHIVER_VERSION_H_
 
 #ifndef SIMPLE_ARCHIVER_VERSION_STR
-#define SIMPLE_ARCHIVER_VERSION_STR "1.12"
+#define SIMPLE_ARCHIVER_VERSION_STR "1.13"
 #endif
 
 #endif