From: Stephen Seo Date: Fri, 28 Feb 2025 04:32:57 +0000 (+0900) Subject: Version 1.18 X-Git-Tag: 1.18^2 X-Git-Url: https://git.seodisparate.com/stephenseo/LD52?a=commitdiff_plain;h=53fe950b06e4e314658b65034b60624f0b39e98a;p=SimpleArchiver Version 1.18 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 53d903a..80bf9ca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.10) project(SimpleArchiver C) -set(SimpleArchiver_VERSION 1.17) +set(SimpleArchiver_VERSION 1.18) set(SimpleArchiver_SOURCES src/main.c diff --git a/Changelog.md b/Changelog.md index 2758b1e..d447c01 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,8 @@ ## Upcoming Changes +## Version 1.18 + Add file format version 4 to support more than 4 billion symlinks, and more than 4 billion files. diff --git a/cosmopolitan/Makefile b/cosmopolitan/Makefile index 7d6df00..9d4abde 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.17) +VERSION_STR := $(shell /usr/bin/git describe --long --tags || /usr/bin/echo 1.18) OTHER_FLAGS := -DSIMPLE_ARCHIVER_VERSION_STR=\"${VERSION_STR}\" diff --git a/src/version.h b/src/version.h index e6ec580..bba8670 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.17" +#define SIMPLE_ARCHIVER_VERSION_STR "1.18" #endif #endif