From 7f2becf7027080c04a6c696f3718d24f69072ace Mon Sep 17 00:00:00 2001 From: Jacquin Antoine Date: Mon, 2 Mar 2026 22:54:12 +0100 Subject: [PATCH] chore: bump version to 1.1.3 - RPM spec: 1.1.3-1 - Makefile PKG_VERSION: 1.1.3 Changes in 1.1.3: - Refactor: Unix sockets switched from STREAM to DGRAM (SOCK_DGRAM) - Test: Coverage improved to 74.4% with comprehensive tests - Fix: Example config in /etc/logcorrelator/ - Change: Socket permissions 0666 (world read/write) Co-authored-by: Qwen-Coder --- Makefile | 2 +- packaging/rpm/logcorrelator.spec | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 557d47a..11b27dc 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ BINARY_NAME=logcorrelator DIST_DIR=dist # Package version -PKG_VERSION ?= 1.1.2 +PKG_VERSION ?= 1.1.3 ## build: Build the logcorrelator binary locally build: diff --git a/packaging/rpm/logcorrelator.spec b/packaging/rpm/logcorrelator.spec index a0e7ac8..240aa24 100644 --- a/packaging/rpm/logcorrelator.spec +++ b/packaging/rpm/logcorrelator.spec @@ -2,7 +2,7 @@ # Compatible with CentOS 7, Rocky Linux 8, 9, 10 # Define version before Version: field for RPM macro support -%global spec_version 1.1.2 +%global spec_version 1.1.3 Name: logcorrelator Version: %{spec_version} @@ -120,6 +120,12 @@ fi /etc/logrotate.d/logcorrelator %changelog +* Mon Mar 02 2026 logcorrelator - 1.1.3-1 +- Refactor: Switch Unix sockets from STREAM to DGRAM mode (SOCK_DGRAM) +- Test: Comprehensive tests added - coverage improved to 74.4% +- Fix: Example config file installed to /etc/logcorrelator/logcorrelator.yml.example +- Change: Default socket permissions from 0660 to 0666 (world read/write) + * Mon Mar 02 2026 logcorrelator - 1.1.2-1 - Fix: Example config file installed to /etc/logcorrelator/logcorrelator.yml.example - Change: Default socket permissions from 0660 to 0666 (world read/write)