Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jelu committed Oct 23, 2020
1 parent 80d3e27 commit 31f24e5
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 4 deletions.
24 changes: 24 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -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])
Expand Down
26 changes: 26 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <lundstrom.jerry@gmail.com> Fri, 23 Oct 2020 14:22:50 +0200

dnswire (0.1.1-1~unstable+1) unstable; urgency=low

* Release v0.1.1
Expand Down
24 changes: 22 additions & 2 deletions rpm/dnswire.spec
Original file line number Diff line number Diff line change
@@ -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++
Expand Down Expand Up @@ -97,9 +97,29 @@ rm -rf $RPM_BUILD_ROOT


%changelog
* Fri Oct 23 2020 Jerry Lundström <lundstrom.jerry@gmail.com> 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 <lundstrom.jerry@gmail.com> 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 <lundstrom.jerry@gmail.com> 0.1.0-1
Expand Down

0 comments on commit 31f24e5

Please sign in to comment.