From 45919ea82b3cfed52310eedddb3e96373d2b1a01 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Thu, 8 Jan 2026 19:18:06 -0600 Subject: [PATCH] Update: Next micro version (0.7.5). The following are the commands that I ran to make this change: # find data/ sources/ documents/ licenses/ install.sh -type f -exec sed -i -e 's|0\.7\.4|0.7.5|g' -e 's|^version_micro 4|version_micro 5|g' '{}' ';' # find sources/ -name *.h -exec sed -i -e 's|_program_version_micro_s F_string_ascii_4_s|_program_version_micro_s F_string_ascii_5_s|g' -e 's|_program_version_micro_s_length F_string_ascii_4_s_length|_program_version_micro_s_length F_string_ascii_5_s_length|g' '{}' ';' # sed -i -e 's|version_micro 4|version_micro 5|g' data/build/settings* data/build/stand_alone/settings.* --- data/build/settings | 2 +- data/documentation/man/man1/firewall.1 | 2 +- documents/readme.bootstrap.txt | 12 ++++++------ documents/readme.build.txt | 6 +++--- install.sh | 2 +- sources/c/program/firewall/main/common/string.h | 4 ++-- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/data/build/settings b/data/build/settings index b4b3444..07d4837 100644 --- a/data/build/settings +++ b/data/build/settings @@ -22,7 +22,7 @@ build_name firewall version_major 0 version_minor 7 -version_micro 4 +version_micro 5 version_file micro version_target minor diff --git a/data/documentation/man/man1/firewall.1 b/data/documentation/man/man1/firewall.1 index 4113037..87dd8a1 100644 --- a/data/documentation/man/man1/firewall.1 +++ b/data/documentation/man/man1/firewall.1 @@ -1,4 +1,4 @@ -.TH FIREWALL "1" "April 2025" "Kevux - Firewall 0.7.4" "User Commands" +.TH FIREWALL "1" "April 2025" "Kevux - Firewall 0.7.5" "User Commands" .SH NAME firewall \- A basic iptables based firewall manager for the Kevux distribution. .SH SYNOPSIS diff --git a/documents/readme.bootstrap.txt b/documents/readme.bootstrap.txt index 80095c0..b6ced55 100644 --- a/documents/readme.bootstrap.txt +++ b/documents/readme.bootstrap.txt @@ -49,7 +49,7 @@ Bootstrap Readme Documentation: If one of the build sub-directories, such as includes, libraries, programs, and settings, is empty or missing after a successful build, then there are no files of that type to install. - Build Tree Structure Example (using the FLL:"Featureless Linux Library" code:"status_code-0.7.4" project)\: + Build Tree Structure Example (using the FLL:"Featureless Linux Library" code:"status_code-0.7.5" project)\: block:" build/ ├── documents @@ -69,8 +69,8 @@ Bootstrap Readme Documentation: │   ├── shared │   │   ├── libstatus_code.so -> libstatus_code.so.0 │   │   ├── libstatus_code.so.0 -> libstatus_code.so.0.7 - │   │   ├── libstatus_code.so.0.7 -> libstatus_code.so.0.7.4 - │   │   └── libstatus_code.so.0.7.4 + │   │   ├── libstatus_code.so.0.7 -> libstatus_code.so.0.7.5 + │   │   └── libstatus_code.so.0.7.5 │   └── static │   └── libstatus_code.a ├── objects @@ -114,7 +114,7 @@ Bootstrap Readme Documentation: └── sources_settings-settings.main.built " - Work Tree Sructure Example at file:"/tmp/work" (using the FLL:"Featureless Linux Library" code:"status_code-0.7.4" project)\: + Work Tree Sructure Example at file:"/tmp/work" (using the FLL:"Featureless Linux Library" code:"status_code-0.7.5" project)\: block:" /tmp/work/ ├── includes @@ -132,8 +132,8 @@ Bootstrap Readme Documentation: ├── shared │   ├── libstatus_code.so -> libstatus_code.so.0 │   ├── libstatus_code.so.0 -> libstatus_code.so.0.7 - │   ├── libstatus_code.so.0.7 -> libstatus_code.so.0.7.4 - │   └── libstatus_code.so.0.7.4 + │   ├── libstatus_code.so.0.7 -> libstatus_code.so.0.7.5 + │   └── libstatus_code.so.0.7.5 └── static └── libstatus_code.a " diff --git a/documents/readme.build.txt b/documents/readme.build.txt index 3eb596e..84397f4 100644 --- a/documents/readme.build.txt +++ b/documents/readme.build.txt @@ -50,7 +50,7 @@ Build Readme Documentation: code:"cp -vR build/programs/shared/* /usr/bin/" code:"cp -vR build/settings/* /etc/" - Build Tree Structure Example (using the FLL:"Featureless Linux Library" code:"status_code-0.7.4" project)\: + Build Tree Structure Example (using the FLL:"Featureless Linux Library" code:"status_code-0.7.5" project)\: block:" build/ ├── documents @@ -70,8 +70,8 @@ Build Readme Documentation: │   ├── shared │   │   ├── libstatus_code.so -> libstatus_code.so.0 │   │   ├── libstatus_code.so.0 -> libstatus_code.so.0.7 - │   │   ├── libstatus_code.so.0.7 -> libstatus_code.so.0.7.4 - │   │   └── libstatus_code.so.0.7.4 + │   │   ├── libstatus_code.so.0.7 -> libstatus_code.so.0.7.5 + │   │   └── libstatus_code.so.0.7.5 │   └── static │   └── libstatus_code.a ├── objects diff --git a/install.sh b/install.sh index 827c21a..d433004 100755 --- a/install.sh +++ b/install.sh @@ -23,7 +23,7 @@ install_main() { local public_name="Simple Kevux Firewall Project Install Script" local system_name=install local called_name=$(basename ${0}) - local version=0.7.4 + local version=0.7.5 local grab_next= local do_color=dark diff --git a/sources/c/program/firewall/main/common/string.h b/sources/c/program/firewall/main/common/string.h index 437ad49..2863483 100644 --- a/sources/c/program/firewall/main/common/string.h +++ b/sources/c/program/firewall/main/common/string.h @@ -22,11 +22,11 @@ extern "C" { #ifndef _di_firewall_program_version_s_ #define FIREWALL_program_version_major_s F_string_ascii_0_s #define FIREWALL_program_version_minor_s F_string_ascii_7_s - #define FIREWALL_program_version_micro_s F_string_ascii_4_s + #define FIREWALL_program_version_micro_s F_string_ascii_5_s #define FIREWALL_program_version_major_s_length F_string_ascii_0_s_length #define FIREWALL_program_version_minor_s_length F_string_ascii_7_s_length - #define FIREWALL_program_version_micro_s_length F_string_ascii_4_s_length + #define FIREWALL_program_version_micro_s_length F_string_ascii_5_s_length #if !(defined(FIREWALL_program_version_nano_prefix_s) && defined(FIREWALL_program_version_nano_prefix_s_length)) #define FIREWALL_program_version_nano_prefix_s -- 1.8.3.1