Skip to content

Commit

Permalink
New version 1.57.0. Add to RELEASE_NOTES.md. Remove test print statem…
Browse files Browse the repository at this point in the history
…ent.
  • Loading branch information
keithrbennett committed Dec 31, 2014
1 parent 824abb6 commit d061199
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
3 changes: 1 addition & 2 deletions README.md
Expand Up @@ -5,8 +5,7 @@ Dnsruby
=======

Dnsruby is a pure Ruby DNS client library which implements a
stub resolver. It aims to comply with all DNS RFCs, including
DNSSEC NSEC3 support.
stub resolver. It aims to comply with all DNS RFCs.

Dnsruby presents an enhanced API for DNS. It is based on Ruby's core
resolv.rb Resolv API, but has been much extended to provide a
Expand Down
13 changes: 13 additions & 0 deletions RELEASE_NOTES.md
@@ -1,5 +1,18 @@
# Release Notes

## v1.57.0

* Add query_raw method as alias for send_plain_message, with option to raise or return error.
* Fixed a bug in RR hash calculation where TTL should have been ignored but wasn't.
* Add support for (obsolete) GPOS resource record type.
* Tweak Travis CI configuration.
* Fix zone reader for case where a line contains whitespace preceding a comment.
* Add post install message.
* Improve README.
* Moved content of NEWS to RELEASE_NOTES.md.
* Use git ls-files now to determine files for inclusion in gem.


## v1.56.0

* Drop support for Ruby 1.8, using lambda -> and hash 'key: value' notations.
Expand Down
4 changes: 2 additions & 2 deletions dnsruby.gemspec
Expand Up @@ -27,8 +27,8 @@ DNSSEC NSEC3 support.'
s.extra_rdoc_files = ["DNSSEC", "EXAMPLES", "README.md", "EVENTMACHINE"]

unless /java/ === RUBY_PLATFORM
s.add_development_dependency 'pry'
s.add_development_dependency 'pry-byebug' if RUBY_VERSION >= '2'
s.add_development_dependency 'pry', '~> 0.10'
s.add_development_dependency 'pry-byebug', '~> 2.0' if RUBY_VERSION >= '2'
end

s.add_development_dependency 'rake', '~> 10', '>= 10.3.2'
Expand Down
2 changes: 1 addition & 1 deletion lib/dnsruby/version.rb
@@ -1,3 +1,3 @@
module Dnsruby
VERSION = '1.56.1'
VERSION = '1.57.0'
end
5 changes: 0 additions & 5 deletions test/tc_nsec3.rb
Expand Up @@ -134,9 +134,4 @@ def test_types
rr = RR.create("929p027vb26s89h6fv5j7hmsis4tcr1p.tjeb.nl. 3600 IN NSEC3 1 0 5 beef 9rs4nbe7128ap5i6v196ge2iag5b7rcq A AAAA RRSIG
")
end

def test_rfc_examples
print "IMPLEMENT NSEC3 validation!\n"
return
end
end

0 comments on commit d061199

Please sign in to comment.