diff --git a/CHANGES b/CHANGES index e6853d5..4e7f58c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,28 @@ +2020-10-22 Jerry Lundström + + Release 0.1.1 + + This release adds a few assert check on augments to some of the function + calls, fixes a type in configure and adds coverage tests. + + - `tinyframe_write_control()`: + - assert arguments and content fields data + - check for valid content field types + - `tinyframe_write_control_start()`: assert arguments + - `tinyframe_write_frame()`: assert arguments + - `tinyframe_write_control_stop()`: assert arguments + - `tinyframe_set_header()`: assert arguments + - Remove `sprintf()` usage from tracing + + c6fbfea Travis, configure + ba616b0 Coverage + 97dfeb7 Coverage + f69665b Badges + 907a894 COPR + f07d4e8 Funding + 242b1b2 Trace + 8d36cf7 LGTM + 2020-03-19 Jerry Lundström First release v0.1.0 diff --git a/configure.ac b/configure.ac index de6777b..8756aaa 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,9 @@ AC_PREREQ(2.61) -AC_INIT([tinyframe], [0.1.0], [todo@dns-oarc.net], [tinyframe], [https://github.com/DNS-OARC/tinyframe/issues]) +AC_INIT([tinyframe], [0.1.1], [todo@dns-oarc.net], [tinyframe], [https://github.com/DNS-OARC/tinyframe/issues]) AC_SUBST([TINYFRAME_VERSION_MAJOR], [0000]) AC_SUBST([TINYFRAME_VERSION_MINOR], [0001]) -AC_SUBST([TINYFRAME_VERSION_PATCH], [0000]) -AC_SUBST([TINYFRAME_LIBRARY_VERSION], [0:0:0]) +AC_SUBST([TINYFRAME_VERSION_PATCH], [0001]) +AC_SUBST([TINYFRAME_LIBRARY_VERSION], [0:1:0]) AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) AC_CONFIG_SRCDIR([src/tinyframe.c]) AC_CONFIG_HEADER([src/config.h]) diff --git a/debian/changelog b/debian/changelog index 2053f67..6252372 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,30 @@ +tinyframe (0.1.1-1~unstable+1) unstable; urgency=low + + * Release 0.1.1 + + This release adds a few assert check on augments to some of the function + calls, fixes a type in configure and adds coverage tests. + + - `tinyframe_write_control()`: + - assert arguments and content fields data + - check for valid content field types + - `tinyframe_write_control_start()`: assert arguments + - `tinyframe_write_frame()`: assert arguments + - `tinyframe_write_control_stop()`: assert arguments + - `tinyframe_set_header()`: assert arguments + - Remove `sprintf()` usage from tracing + + c6fbfea Travis, configure + ba616b0 Coverage + 97dfeb7 Coverage + f69665b Badges + 907a894 COPR + f07d4e8 Funding + 242b1b2 Trace + 8d36cf7 LGTM + + -- Jerry Lundström Thu, 22 Oct 2020 14:11:31 +0200 + tinyframe (0.1.0-1~unstable+1) unstable; urgency=low * Release 0.1.0 diff --git a/rpm/tinyframe.spec b/rpm/tinyframe.spec index 01e1316..2413fdc 100644 --- a/rpm/tinyframe.spec +++ b/rpm/tinyframe.spec @@ -1,7 +1,7 @@ %define sover 0 %define libname libtinyframe%{sover} Name: tinyframe -Version: 0.1.0 +Version: 0.1.1 Release: 1%{?dist} Summary: Frame Streams encoder/decoder library Group: Development/Libraries/C and C++ @@ -80,5 +80,26 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Oct 22 2020 Jerry Lundström 0.1.1-1 +- Release 0.1.1 + * This release adds a few assert check on augments to some of the function + calls, fixes a type in configure and adds coverage tests. + - `tinyframe_write_control()`: + - assert arguments and content fields data + - check for valid content field types + - `tinyframe_write_control_start()`: assert arguments + - `tinyframe_write_frame()`: assert arguments + - `tinyframe_write_control_stop()`: assert arguments + - `tinyframe_set_header()`: assert arguments + - Remove `sprintf()` usage from tracing + * Commits: + c6fbfea Travis, configure + ba616b0 Coverage + 97dfeb7 Coverage + f69665b Badges + 907a894 COPR + f07d4e8 Funding + 242b1b2 Trace + 8d36cf7 LGTM * Thu Mar 19 2020 Jerry Lundström 0.1.0-1 - Release 0.1.0