Skip to content

Commit

Permalink
Release 0.39
Browse files Browse the repository at this point in the history
Signed-off-by: Matěj Grabovský <[email protected]>
  • Loading branch information
mgrabovsky committed Dec 17, 2021
1 parent f8e684b commit f8a0dbf
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion gen-version
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

DEF_VER=0.38
DEF_VER=0.39
LF='
'

Expand Down
2 changes: 1 addition & 1 deletion lib/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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!

Expand Down
10 changes: 10 additions & 0 deletions satyr.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,16 @@ make check|| {
%endif

%changelog
* Fri Dec 17 2021 Matěj Grabovský <[email protected]> 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 <[email protected]> 0.38-1
- Release
- lib: Use GLib for computing SHA-1 digests
Expand Down

0 comments on commit f8a0dbf

Please sign in to comment.