From b914a98ba1c6c5866fe12d50dd166267abc98c16 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Mon, 3 Feb 2025 16:46:23 +0900 Subject: [PATCH] Update Version 1.13 --- CMakeLists.txt | 2 +- Changelog.md | 7 +++++++ cosmopolitan/Makefile | 2 +- src/version.h | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4beecc3..4b3b20a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 diff --git a/Changelog.md b/Changelog.md index 4862f3e..36aebf3 100644 --- a/Changelog.md +++ b/Changelog.md @@ -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 diff --git a/cosmopolitan/Makefile b/cosmopolitan/Makefile index ef2e5e6..3648a2b 100644 --- a/cosmopolitan/Makefile +++ b/cosmopolitan/Makefile @@ -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}\" diff --git a/src/version.h b/src/version.h index 3690a20..e61a8b3 100644 --- a/src/version.h +++ b/src/version.h @@ -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 -- 2.49.0