Skip to content

Commit

Permalink
Update to 0.8.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cdeccio committed Feb 7, 2019
1 parent a127ce2 commit 40890f8
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 9 deletions.
4 changes: 3 additions & 1 deletion 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

Expand Down Expand Up @@ -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
2 changes: 2 additions & 0 deletions contrib/dnsviz-py3.spec
Expand Up @@ -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
2 changes: 1 addition & 1 deletion dnsviz/transport.py
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion doc/man/dnsviz-graph.1
Expand Up @@ -20,7 +20,7 @@
.\" You should have received a copy of the GNU General Public License along
.\" with DNSViz. If not, see <http://www.gnu.org/licenses/>.
.\"
.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
Expand Down
2 changes: 1 addition & 1 deletion doc/man/dnsviz-grok.1
Expand Up @@ -20,7 +20,7 @@
.\" You should have received a copy of the GNU General Public License along
.\" with DNSViz. If not, see <http://www.gnu.org/licenses/>.
.\"
.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
Expand Down
2 changes: 1 addition & 1 deletion doc/man/dnsviz-print.1
Expand Up @@ -20,7 +20,7 @@
.\" You should have received a copy of the GNU General Public License along
.\" with DNSViz. If not, see <http://www.gnu.org/licenses/>.
.\"
.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
Expand Down
2 changes: 1 addition & 1 deletion doc/man/dnsviz-probe.1
Expand Up @@ -20,7 +20,7 @@
.\" You should have received a copy of the GNU General Public License along
.\" with DNSViz. If not, see <http://www.gnu.org/licenses/>.
.\"
.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
Expand Down
2 changes: 1 addition & 1 deletion doc/man/dnsviz-query.1
Expand Up @@ -20,7 +20,7 @@
.\" You should have received a copy of the GNU General Public License along
.\" with DNSViz. If not, see <http://www.gnu.org/licenses/>.
.\"
.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
Expand Down
2 changes: 1 addition & 1 deletion doc/man/dnsviz.1
Expand Up @@ -20,7 +20,7 @@
.\" You should have received a copy of the GNU General Public License along
.\" with DNSViz. If not, see <http://www.gnu.org/licenses/>.
.\"
.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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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/',
Expand Down

0 comments on commit 40890f8

Please sign in to comment.