From 55395fda6890603ca5061cd15a32dfb2d6817928 Mon Sep 17 00:00:00 2001 From: Stefan Schubert Date: Mon, 9 Dec 2024 17:20:01 +0100 Subject: [PATCH] version 0.7.5 --- CMakeLists.txt | 2 +- NEWS | 8 ++++++++ meson.build | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c4236cf..469e7d7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.12) # Ensure built-in policies from CMake are used, (e.g. improved policies for macOS) cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}) -project(libeconf VERSION 0.7.4 +project(libeconf VERSION 0.7.5 DESCRIPTION "Enhanced config file parser, which merges config files placed in several locations into one." LANGUAGES C ) diff --git a/NEWS b/NEWS index 4ba6f7b..9e611c5 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,11 @@ +Version 0.7.5 +* Fixed memory leaks. +* Removed PATH_MAX define. +* Add ROOT_PREFIX as option to replace TESTSDIR hack +* Using valgrind for checking memory leaks. +* Implement econf_*freep functions for automatic cleanup +* Cleanup *free functions + Version 0.7.4 * Fixed memory leaks. diff --git a/meson.build b/meson.build index e8a8383..b3e5bb2 100644 --- a/meson.build +++ b/meson.build @@ -7,7 +7,7 @@ project( 'b_pie=true', 'warning_level=3',], license : 'MIT', - version : '0.7.4', + version : '0.7.5', ) cc = meson.get_compiler('c')