From f8a0dbfe7fcc6e44f03d66ca5c81363aea318380 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= Date: Fri, 17 Dec 2021 10:24:43 +0100 Subject: [PATCH] Release 0.39 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Matěj Grabovský --- NEWS | 6 ++++++ gen-version | 2 +- lib/Makefile.am | 2 +- satyr.spec.in | 10 ++++++++++ 4 files changed, 18 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 1d5324f..8c84111 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,12 @@ unreleased ========== +0.39 +========== +Use g_malloc() and g_free() instead of malloc()/free() in many instances +Fix call to a deprecated in Python tests +Add test case for sr_rpm_package_cmp() + 0.38 ========== lib: Use GLib for computing SHA-1 digests diff --git a/gen-version b/gen-version index d9815f5..bc60895 100755 --- a/gen-version +++ b/gen-version @@ -1,6 +1,6 @@ #!/bin/bash -DEF_VER=0.38 +DEF_VER=0.39 LF=' ' diff --git a/lib/Makefile.am b/lib/Makefile.am index febede2..a52e5a1 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -90,7 +90,7 @@ libsatyr_conv_la_LIBADD = \ lib_LTLIBRARIES = libsatyr.la libsatyr_la_SOURCES = libsatyr_la_LIBADD = libsatyr_conv.la -libsatyr_la_LDFLAGS = -version-info 4:2:0 -export-symbols-regex '^sr_' +libsatyr_la_LDFLAGS = -version-info 4:3:0 -export-symbols-regex '^sr_' # NOTE: when updating CURRENT, update it in ruby/lib/satyr.rb as well! diff --git a/satyr.spec.in b/satyr.spec.in index 248a4d6..59fc29f 100644 --- a/satyr.spec.in +++ b/satyr.spec.in @@ -129,6 +129,16 @@ make check|| { %endif %changelog +* Fri Dec 17 2021 Matěj Grabovský 0.39-1 +- tests: Fix call to deprecated method +- gitignore: Update local rules +- tests: Add test case for sr_rpm_package_cmp +- readme: Add Codecov badge +- github: Calculate and upload code coverage to Codecov +- autogen: Show executed commands +- Use g_malloc instead of malloc +- Use matching g_free for g_malloc'd memory + * Wed Jun 16 2021 Michal Fabik 0.38-1 - Release - lib: Use GLib for computing SHA-1 digests