-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
51 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
AC_PREREQ(2.61) | ||
AC_INIT([dnswire], [0.3.3], [[email protected]], [dnswire], [https://github.com/DNS-OARC/dnswire/issues]) | ||
AC_INIT([dnswire], [0.4.0], [[email protected]], [dnswire], [https://github.com/DNS-OARC/dnswire/issues]) | ||
AC_SUBST([DNSWIRE_VERSION_MAJOR], [0000]) | ||
AC_SUBST([DNSWIRE_VERSION_MINOR], [0003]) | ||
AC_SUBST([DNSWIRE_VERSION_PATCH], [0003]) | ||
AC_SUBST([DNSWIRE_LIBRARY_VERSION], [1:0:0]) | ||
AC_SUBST([DNSWIRE_VERSION_MINOR], [0004]) | ||
AC_SUBST([DNSWIRE_VERSION_PATCH], [0000]) | ||
AC_SUBST([DNSWIRE_LIBRARY_VERSION], [1:1:0]) | ||
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) | ||
AC_CONFIG_SRCDIR([src/dnstap.c]) | ||
AC_CONFIG_HEADER([src/config.h]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
dnswire (0.4.0-1~unstable+1) unstable; urgency=low | ||
|
||
* Release 0.4.0 | ||
|
||
Updated `dnstap.pb` to include recently added DNS-over-QUIC (DOQ) | ||
socket protocol. | ||
|
||
a03a989 Fix COPR | ||
e3f1167 dnstap.pb, DOQ | ||
|
||
-- Jerry Lundström <[email protected]> Fri, 03 Mar 2023 13:39:49 +0100 | ||
|
||
dnswire (0.3.3-1~unstable+1) unstable; urgency=low | ||
|
||
* Release 0.3.3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,11 @@ Upstream-Name: dnswire | |
Source: https://github.com/DNS-OARC/dnswire | ||
|
||
Files: * | ||
Copyright: 2020 OARC, Inc. | ||
Copyright: 2019-2023 OARC, Inc. | ||
License: LGPL-3.0-or-later | ||
|
||
Files: debian/* | ||
Copyright: 2020 Jerry Lundström <[email protected]> | ||
Copyright: 2023 Jerry Lundström <[email protected]> | ||
License: BSD-3-Clause | ||
|
||
License: LGPL-3.0-or-later | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%define sover 1 | ||
%define libname libdnswire%{sover} | ||
Name: dnswire | ||
Version: 0.3.3 | ||
Version: 0.4.0 | ||
Release: 1%{?dist} | ||
Summary: library for DNS encapsulations and transporting of them | ||
Group: Development/Libraries/C and C++ | ||
|
@@ -97,6 +97,13 @@ rm -rf $RPM_BUILD_ROOT | |
|
||
|
||
%changelog | ||
* Fri Mar 03 2023 Jerry Lundström <[email protected]> 0.4.0-1 | ||
- Release 0.4.0 | ||
* Updated `dnstap.pb` to include recently added DNS-over-QUIC (DOQ) | ||
socket protocol. | ||
* Commits: | ||
a03a989 Fix COPR | ||
e3f1167 dnstap.pb, DOQ | ||
* Wed Feb 02 2022 Jerry Lundström <[email protected]> 0.3.3-1 | ||
- Release 0.3.3 | ||
* This is a package only update release to correct mistakes in Debian/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Author Jerry Lundström <[email protected]> | ||
* Copyright (c) 2019, OARC, Inc. | ||
* Copyright (c) 2019-2023, OARC, Inc. | ||
* All rights reserved. | ||
* | ||
* This file is part of the dnswire library. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Author Jerry Lundström <[email protected]> | ||
* Copyright (c) 2019, OARC, Inc. | ||
* Copyright (c) 2019-2023, OARC, Inc. | ||
* All rights reserved. | ||
* | ||
* This file is part of the dnswire library. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Author Jerry Lundström <[email protected]> | ||
* Copyright (c) 2019, OARC, Inc. | ||
* Copyright (c) 2019-2023, OARC, Inc. | ||
* All rights reserved. | ||
* | ||
* This file is part of the dnswire library. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Author Jerry Lundström <[email protected]> | ||
* Copyright (c) 2019, OARC, Inc. | ||
* Copyright (c) 2019-2023, OARC, Inc. | ||
* All rights reserved. | ||
* | ||
* This file is part of the dnswire library. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Author Jerry Lundström <[email protected]> | ||
* Copyright (c) 2019, OARC, Inc. | ||
* Copyright (c) 2019-2023, OARC, Inc. | ||
* All rights reserved. | ||
* | ||
* This file is part of the dnswire library. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Author Jerry Lundström <[email protected]> | ||
* Copyright (c) 2019, OARC, Inc. | ||
* Copyright (c) 2019-2023, OARC, Inc. | ||
* All rights reserved. | ||
* | ||
* This file is part of the dnswire library. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Author Jerry Lundström <[email protected]> | ||
* Copyright (c) 2019, OARC, Inc. | ||
* Copyright (c) 2019-2023, OARC, Inc. | ||
* All rights reserved. | ||
* | ||
* This file is part of the dnswire library. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Author Jerry Lundström <[email protected]> | ||
* Copyright (c) 2019, OARC, Inc. | ||
* Copyright (c) 2019-2023, OARC, Inc. | ||
* All rights reserved. | ||
* | ||
* This file is part of the dnswire library. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Author Jerry Lundström <[email protected]> | ||
* Copyright (c) 2019, OARC, Inc. | ||
* Copyright (c) 2019-2023, OARC, Inc. | ||
* All rights reserved. | ||
* | ||
* This file is part of the dnswire library. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Author Jerry Lundström <[email protected]> | ||
* Copyright (c) 2019, OARC, Inc. | ||
* Copyright (c) 2019-2023, OARC, Inc. | ||
* All rights reserved. | ||
* | ||
* This file is part of the dnswire library. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Author Jerry Lundström <[email protected]> | ||
* Copyright (c) 2019, OARC, Inc. | ||
* Copyright (c) 2019-2023, OARC, Inc. | ||
* All rights reserved. | ||
* | ||
* This file is part of the dnswire library. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Author Jerry Lundström <[email protected]> | ||
* Copyright (c) 2019, OARC, Inc. | ||
* Copyright (c) 2019-2023, OARC, Inc. | ||
* All rights reserved. | ||
* | ||
* This file is part of the dnswire library. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Author Jerry Lundström <[email protected]> | ||
* Copyright (c) 2019, OARC, Inc. | ||
* Copyright (c) 2019-2023, OARC, Inc. | ||
* All rights reserved. | ||
* | ||
* This file is part of the dnswire library. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Author Jerry Lundström <[email protected]> | ||
* Copyright (c) 2019, OARC, Inc. | ||
* Copyright (c) 2019-2023, OARC, Inc. | ||
* All rights reserved. | ||
* | ||
* This file is part of the dnswire library. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Author Jerry Lundström <[email protected]> | ||
* Copyright (c) 2019, OARC, Inc. | ||
* Copyright (c) 2019-2023, OARC, Inc. | ||
* All rights reserved. | ||
* | ||
* This file is part of the dnswire library. | ||
|