Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jelu committed Dec 7, 2023
1 parent 167f622 commit 03719c6
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 6 deletions.
22 changes: 22 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
2023-12-07 Jerry Lundström

Release 1.3.0

This release adds `core.object.dns:reset()` to reset DNS objects so they
can be reused correctly.

Example scripts have been updated to reflect this along with correctly
setting `includes_dnslen` for TCP packets.

New example converter `pcap2tcpdns` added that can be used to create bin
files for replaying with `dnsperf -B`.

f0d0b39 pkg-config
464a198 pcap2tcpdns
b40ad6d example convertor from PCAP to TCP DNS format used by dnsperf -B option
ac51bfd pkg-config
198bae9 Copyright
5a87e37 DNS reset, dnslen TCP
f2d6b05 Doc
265a577 COPR fix

2022-03-21 Jerry Lundström

Release 1.2.3
Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
# along with dnsjit. If not, see <http://www.gnu.org/licenses/>.

AC_PREREQ(2.64)
AC_INIT([dnsjit], [1.2.3], [[email protected]], [dnsjit], [https://github.com/DNS-OARC/dnsjit/issues])
AC_INIT([dnsjit], [1.3.0], [[email protected]], [dnsjit], [https://github.com/DNS-OARC/dnsjit/issues])
AC_DEFINE([PACKAGE_MAJOR_VERSION], [1], [Define to the major version of this package.])
AC_DEFINE([PACKAGE_MINOR_VERSION], [2], [Define to the minor version of this package.])
AC_DEFINE([PACKAGE_PATCH_VERSION], [3], [Define to the patch version of this package.])
AC_DEFINE([PACKAGE_MINOR_VERSION], [3], [Define to the minor version of this package.])
AC_DEFINE([PACKAGE_PATCH_VERSION], [0], [Define to the patch version of this package.])
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
AC_CONFIG_SRCDIR([src/dnsjit.c])
AC_CONFIG_HEADER([src/config.h])
Expand Down
24 changes: 24 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
dnsjit (1.3.0-1~unstable+1) unstable; urgency=low

* Release 1.3.0

This release adds `core.object.dns:reset()` to reset DNS objects so they
can be reused correctly.

Example scripts have been updated to reflect this along with correctly
setting `includes_dnslen` for TCP packets.

New example converter `pcap2tcpdns` added that can be used to create bin
files for replaying with `dnsperf -B`.

f0d0b39 pkg-config
464a198 pcap2tcpdns
b40ad6d example convertor from PCAP to TCP DNS format used by dnsperf -B option
ac51bfd pkg-config
198bae9 Copyright
5a87e37 DNS reset, dnslen TCP
f2d6b05 Doc
265a577 COPR fix

-- Jerry Lundström <[email protected]> Thu, 07 Dec 2023 09:52:18 +0100

dnsjit (1.2.3-1~unstable+1) unstable; urgency=low

* Release 1.2.3
Expand Down
19 changes: 18 additions & 1 deletion rpm/dnsjit.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: dnsjit
Version: 1.2.3
Version: 1.3.0
Release: 1%{?dist}
Summary: Engine for capturing, parsing and replaying DNS
Group: Productivity/Networking/DNS/Utilities
Expand Down Expand Up @@ -85,6 +85,23 @@ rm -rf $RPM_BUILD_ROOT


%changelog
* Thu Dec 07 2023 Jerry Lundström <[email protected]> 1.3.0-1
- Release 1.3.0
* This release adds `core.object.dns:reset()` to reset DNS objects so they
can be reused correctly.
* Example scripts have been updated to reflect this along with correctly
setting `includes_dnslen` for TCP packets.
* New example converter `pcap2tcpdns` added that can be used to create bin
files for replaying with `dnsperf -B`.
* Commits:
f0d0b39 pkg-config
464a198 pcap2tcpdns
b40ad6d example convertor from PCAP to TCP DNS format used by dnsperf -B option
ac51bfd pkg-config
198bae9 Copyright
5a87e37 DNS reset, dnslen TCP
f2d6b05 Doc
265a577 COPR fix
* Mon Mar 21 2022 Jerry Lundström <[email protected]> 1.2.3-1
- Release 1.2.3
* This patch release fixes compilation issues on FreeBSD for LLVM v12+.
Expand Down
4 changes: 2 additions & 2 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#define __dnsjit_version_h

#define DNSJIT_MAJOR_VERSION 1
#define DNSJIT_MINOR_VERSION 2
#define DNSJIT_PATCH_VERSION 3
#define DNSJIT_MINOR_VERSION 3
#define DNSJIT_PATCH_VERSION 0

#endif

0 comments on commit 03719c6

Please sign in to comment.