From: Stephen Seo Date: Tue, 25 Feb 2025 01:57:42 +0000 (+0900) Subject: Bump version to 1.17 X-Git-Tag: 1.17^0 X-Git-Url: https://git.seodisparate.com/tbm-server-edit-full.png?a=commitdiff_plain;h=efe60bb286645814048d1d266ba39f1788c67003;p=SimpleArchiver Bump version to 1.17 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index effe6a8..53d903a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.10) project(SimpleArchiver C) -set(SimpleArchiver_VERSION 1.16) +set(SimpleArchiver_VERSION 1.17) set(SimpleArchiver_SOURCES src/main.c diff --git a/Changelog.md b/Changelog.md index b79f1d9..d3f2c2d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,10 @@ ## Upcoming Changes +## Version 1.17 + +Fix `--whitelist-begins-with ` and `--whitelist-ends-with `. + ## Version 1.16 Add white/black-list flags: diff --git a/cosmopolitan/Makefile b/cosmopolitan/Makefile index 088b74d..7d6df00 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.16) +VERSION_STR := $(shell /usr/bin/git describe --long --tags || /usr/bin/echo 1.17) OTHER_FLAGS := -DSIMPLE_ARCHIVER_VERSION_STR=\"${VERSION_STR}\" diff --git a/src/version.h b/src/version.h index eef48f8..e6ec580 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.16" +#define SIMPLE_ARCHIVER_VERSION_STR "1.17" #endif #endif