From 8b0d826426518a25b6f28c7c117f081665e4ebd9 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Mon, 17 Feb 2025 11:54:11 +0900 Subject: [PATCH] Version 1.15 --- CMakeLists.txt | 2 +- Changelog.md | 2 ++ cosmopolitan/Makefile | 2 +- src/version.h | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6d0bf37..3a6ee81 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.10) project(SimpleArchiver C) -set(SimpleArchiver_VERSION 1.14) +set(SimpleArchiver_VERSION 1.15) set(SimpleArchiver_SOURCES src/main.c diff --git a/Changelog.md b/Changelog.md index 570792a..a9a3c5b 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,8 @@ ## Upcoming Changes +## Version 1.15 + Add flag `--force-empty-dir-permissions <3-octal-values>` that force sets the permissions for all extracted empty directories. diff --git a/cosmopolitan/Makefile b/cosmopolitan/Makefile index 894ba01..9ceaed5 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.14) +VERSION_STR := $(shell /usr/bin/git describe --long --tags || /usr/bin/echo 1.15) OTHER_FLAGS := -DSIMPLE_ARCHIVER_VERSION_STR=\"${VERSION_STR}\" diff --git a/src/version.h b/src/version.h index 9248f86..c3f0070 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.14" +#define SIMPLE_ARCHIVER_VERSION_STR "1.15" #endif #endif -- 2.49.0