diff --git a/CHANGES b/CHANGES index 96353d6..b00209b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,27 @@ +2020-10-23 Jerry Lundström + + Release 0.2.0 + + This release fixes various issues and bugs in the API, fix typos and + adds coverage tests. + + Fixes: + - `dnstap_decode_protobuf()`: Fix setting of unknown socket family and protocol, was setting DNSTAP_MESSAGE_TYPE_ enums. + - `enum dnstap_message_type`: Fix typo in unknown enum, now correct `DNSTAP_SOCKET_FAMILY_UNKNOWN` + - `dnswire_encoder_encode()`: Remove setting state when to the same state it was + - `dnswire_writer_set_bufsize()`: Fix bug with changing buffer size while having something in the buffer + + 3bfd7e2 Travis, configure + 27f69ab Coverage + d04b810 Coverage + ee153d7 Badges + a381843 Travis + f3a3e43 COPR + 4b6640f Compile warnings + bc1b2e2 Funding + ae537a9 Examples, tests + c139dd7 LGTM + 2020-03-20 Jerry Lundström Release v0.1.1 diff --git a/configure.ac b/configure.ac index d2d47c4..87971aa 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,9 @@ AC_PREREQ(2.61) -AC_INIT([dnswire], [0.1.1], [admin@dns-oarc.net], [dnswire], [https://github.com/DNS-OARC/dnswire/issues]) +AC_INIT([dnswire], [0.2.0], [admin@dns-oarc.net], [dnswire], [https://github.com/DNS-OARC/dnswire/issues]) AC_SUBST([DNSWIRE_VERSION_MAJOR], [0000]) AC_SUBST([DNSWIRE_VERSION_MINOR], [0001]) AC_SUBST([DNSWIRE_VERSION_PATCH], [0000]) -AC_SUBST([DNSWIRE_LIBRARY_VERSION], [0:0:0]) +AC_SUBST([DNSWIRE_LIBRARY_VERSION], [0:1:0]) AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) AC_CONFIG_SRCDIR([src/dnstap.c]) AC_CONFIG_HEADER([src/config.h]) diff --git a/debian/changelog b/debian/changelog index e9fea4b..069e76a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,29 @@ +dnswire (0.2.0-1~unstable+1) unstable; urgency=low + + * Release 0.2.0 + + This release fixes various issues and bugs in the API, fix typos and + adds coverage tests. + + Fixes: + - `dnstap_decode_protobuf()`: Fix setting of unknown socket family and protocol, was setting DNSTAP_MESSAGE_TYPE_ enums. + - `enum dnstap_message_type`: Fix typo in unknown enum, now correct `DNSTAP_SOCKET_FAMILY_UNKNOWN` + - `dnswire_encoder_encode()`: Remove setting state when to the same state it was + - `dnswire_writer_set_bufsize()`: Fix bug with changing buffer size while having something in the buffer + + 3bfd7e2 Travis, configure + 27f69ab Coverage + d04b810 Coverage + ee153d7 Badges + a381843 Travis + f3a3e43 COPR + 4b6640f Compile warnings + bc1b2e2 Funding + ae537a9 Examples, tests + c139dd7 LGTM + + -- Jerry Lundström Fri, 23 Oct 2020 14:22:50 +0200 + dnswire (0.1.1-1~unstable+1) unstable; urgency=low * Release v0.1.1 diff --git a/rpm/dnswire.spec b/rpm/dnswire.spec index e7a5f0c..d1135b7 100644 --- a/rpm/dnswire.spec +++ b/rpm/dnswire.spec @@ -1,7 +1,7 @@ %define sover 0 %define libname libdnswire%{sover} Name: dnswire -Version: 0.1.1 +Version: 0.2.0 Release: 1%{?dist} Summary: library for DNS encapsulations and transporting of them Group: Development/Libraries/C and C++ @@ -97,9 +97,29 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Oct 23 2020 Jerry Lundström 0.2.0-1 +- Release 0.2.0 + * This release fixes various issues and bugs in the API, fix typos and + adds coverage tests. + * Fixes: + - `dnstap_decode_protobuf()`: Fix setting of unknown socket family and protocol, was setting DNSTAP_MESSAGE_TYPE_ enums. + - `enum dnstap_message_type`: Fix typo in unknown enum, now correct `DNSTAP_SOCKET_FAMILY_UNKNOWN` + - `dnswire_encoder_encode()`: Remove setting state when to the same state it was + - `dnswire_writer_set_bufsize()`: Fix bug with changing buffer size while having something in the buffer + * Commits: + 3bfd7e2 Travis, configure + 27f69ab Coverage + d04b810 Coverage + ee153d7 Badges + a381843 Travis + f3a3e43 COPR + 4b6640f Compile warnings + bc1b2e2 Funding + ae537a9 Examples, tests + c139dd7 LGTM * Fri Mar 20 2020 Jerry Lundström 0.1.1-1 - Release v0.1.1 - - Fix RPM devel package dependencies + * Fix RPM devel package dependencies * Commits: b451169 package * Thu Mar 19 2020 Jerry Lundström 0.1.0-1