From 40890f89e41923076a27208da2c7e253892f5e8c Mon Sep 17 00:00:00 2001 From: Casey Deccio Date: Thu, 7 Feb 2019 06:14:46 +0000 Subject: [PATCH] Update to 0.8.1 release --- contrib/dnsviz-py2.spec | 4 +++- contrib/dnsviz-py3.spec | 2 ++ dnsviz/transport.py | 2 +- doc/man/dnsviz-graph.1 | 2 +- doc/man/dnsviz-grok.1 | 2 +- doc/man/dnsviz-print.1 | 2 +- doc/man/dnsviz-probe.1 | 2 +- doc/man/dnsviz-query.1 | 2 +- doc/man/dnsviz.1 | 2 +- setup.py | 2 +- 10 files changed, 13 insertions(+), 9 deletions(-) diff --git a/contrib/dnsviz-py2.spec b/contrib/dnsviz-py2.spec index f4fa12a3..0bea597b 100644 --- a/contrib/dnsviz-py2.spec +++ b/contrib/dnsviz-py2.spec @@ -1,5 +1,5 @@ Name: dnsviz -Version: 0.8.0 +Version: 0.8.1 Release: 1%{?dist} Summary: Tools for analyzing and visualizing DNS and DNSSEC behavior @@ -60,5 +60,7 @@ rm -rf %{buildroot} %{_mandir}/man1/%{name}-query.1* %changelog +* Wed Feb 6 2019 Casey Deccio + 0.8.1 release * Fri Jan 25 2019 Casey Deccio 0.8.0 release diff --git a/contrib/dnsviz-py3.spec b/contrib/dnsviz-py3.spec index 2afccca6..ef25f4b5 100644 --- a/contrib/dnsviz-py3.spec +++ b/contrib/dnsviz-py3.spec @@ -60,5 +60,7 @@ rm -rf %{buildroot} %{_mandir}/man1/%{name}-query.1* %changelog +* Wed Feb 6 2019 Casey Deccio + 0.8.1 release * Fri Jan 25 2019 Casey Deccio 0.8.0 release diff --git a/dnsviz/transport.py b/dnsviz/transport.py index 5db7c03b..2c4798c7 100644 --- a/dnsviz/transport.py +++ b/dnsviz/transport.py @@ -797,7 +797,7 @@ def _authentication_header(self): def init_req(self): data = self._post_data() - self.msg_send = codecs.encode('POST %s HTTP/1.1\r\nHost: %s\r\nUser-Agent: DNSViz/0.8.0\r\nAccept: application/json\r\n%sContent-Length: %d\r\nContent-Type: application/x-www-form-urlencoded\r\n\r\n%s' % (self.path, self.host, self._authentication_header(), len(data), data), 'latin1') + self.msg_send = codecs.encode('POST %s HTTP/1.1\r\nHost: %s\r\nUser-Agent: DNSViz/0.8.1\r\nAccept: application/json\r\n%sContent-Length: %d\r\nContent-Type: application/x-www-form-urlencoded\r\n\r\n%s' % (self.path, self.host, self._authentication_header(), len(data), data), 'latin1') self.msg_send_len = len(self.msg_send) self.msg_send_index = 0 diff --git a/doc/man/dnsviz-graph.1 b/doc/man/dnsviz-graph.1 index fd4600d2..c6b6f5a9 100644 --- a/doc/man/dnsviz-graph.1 +++ b/doc/man/dnsviz-graph.1 @@ -20,7 +20,7 @@ .\" You should have received a copy of the GNU General Public License along .\" with DNSViz. If not, see . .\" -.TH dnsviz-probe 1 "25 Jan 2019" "0.8.0" +.TH dnsviz-probe 1 "25 Jan 2019" "0.8.1" .SH NAME dnsviz-graph \- graph the assessment of diagnostic DNS queries .SH SYNOPSIS diff --git a/doc/man/dnsviz-grok.1 b/doc/man/dnsviz-grok.1 index 45490399..3f0b352d 100644 --- a/doc/man/dnsviz-grok.1 +++ b/doc/man/dnsviz-grok.1 @@ -20,7 +20,7 @@ .\" You should have received a copy of the GNU General Public License along .\" with DNSViz. If not, see . .\" -.TH dnsviz-grok 1 "25 Jan 2019" "0.8.0" +.TH dnsviz-grok 1 "25 Jan 2019" "0.8.1" .SH NAME dnsviz-grok \- assess diagnostic DNS queries .SH SYNOPSIS diff --git a/doc/man/dnsviz-print.1 b/doc/man/dnsviz-print.1 index bdab724f..cd5fec85 100644 --- a/doc/man/dnsviz-print.1 +++ b/doc/man/dnsviz-print.1 @@ -20,7 +20,7 @@ .\" You should have received a copy of the GNU General Public License along .\" with DNSViz. If not, see . .\" -.TH dnsviz-print 1 "25 Jan 2019" "0.8.0" +.TH dnsviz-print 1 "25 Jan 2019" "0.8.1" .SH NAME dnsviz-print \- print the assessment of diagnostic DNS queries .SH SYNOPSIS diff --git a/doc/man/dnsviz-probe.1 b/doc/man/dnsviz-probe.1 index eb2b26fc..eeb5152e 100644 --- a/doc/man/dnsviz-probe.1 +++ b/doc/man/dnsviz-probe.1 @@ -20,7 +20,7 @@ .\" You should have received a copy of the GNU General Public License along .\" with DNSViz. If not, see . .\" -.TH dnsviz-probe 1 "25 Jan 2019" "0.8.0" +.TH dnsviz-probe 1 "25 Jan 2019" "0.8.1" .SH NAME dnsviz-probe \- issue diagnostic DNS queries .SH SYNOPSIS diff --git a/doc/man/dnsviz-query.1 b/doc/man/dnsviz-query.1 index 873b964b..8384ab87 100644 --- a/doc/man/dnsviz-query.1 +++ b/doc/man/dnsviz-query.1 @@ -20,7 +20,7 @@ .\" You should have received a copy of the GNU General Public License along .\" with DNSViz. If not, see . .\" -.TH dnsviz-query 1 "25 Jan 2019" "0.8.0" +.TH dnsviz-query 1 "25 Jan 2019" "0.8.1" .SH NAME dnsviz-query \- assess a DNS query .SH SYNOPSIS diff --git a/doc/man/dnsviz.1 b/doc/man/dnsviz.1 index 19444ed8..9ca6f7a4 100644 --- a/doc/man/dnsviz.1 +++ b/doc/man/dnsviz.1 @@ -20,7 +20,7 @@ .\" You should have received a copy of the GNU General Public License along .\" with DNSViz. If not, see . .\" -.TH dnsviz 1 "25 Jan 2019" "0.8.0" +.TH dnsviz 1 "25 Jan 2019" "0.8.1" .SH NAME dnsviz \- issue and assess diagnostic DNS queries .SH SYNOPSIS diff --git a/setup.py b/setup.py index 2f7240f1..ba1016e3 100644 --- a/setup.py +++ b/setup.py @@ -118,7 +118,7 @@ def run(self): create_config('') setup(name='dnsviz', - version='0.8.0', + version='0.8.1', author='Casey Deccio', author_email='casey@deccio.net', url='https://github.com/dnsviz/dnsviz/',