Skip to content

Commit

Permalink
v0.9.23
Browse files Browse the repository at this point in the history
  • Loading branch information
paulc committed Oct 28, 2022
1 parent 175f101 commit 0b2855f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
8 changes: 7 additions & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,13 @@ Changelog:
* 0.9.21 2022-09-19 Minor clean-up / add wheels to distro
* 0.9.22 2022-09027 Issue #43 (0.9.21 Raises TypeError instead of DNSError when failing to parse HTTPS records)
Note that we just fix the exception - there still seems to be a problem with parsing HTTPS records
(Thnaks to @robinlandstrom)
(Thanks to @robinlandstrom)
* 0.9.23 2022-10-28 Issue #43: HTTPS reads after RD end (thanks to @robinlandstrom for pull request)
Issue #45: Dnslib fails to handle unknown RR types in NSEC RD type bitmap
Bimap now supports a function to map unknown types which we use to
dynamically map from rtype <-> TYPExxxx for unknown record types
RR zone representation updated to match RFC3597
Pull Request #47: Add support for DS, SSHFP, and TLSA records (thanks to @rmbolger)

License:
--------
Expand Down
10 changes: 8 additions & 2 deletions dnslib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,13 @@
* 0.9.21 2022-09-19 Minor clean-up / add wheels to distro
* 0.9.22 2022-09027 Issue #43 (0.9.21 Raises TypeError instead of DNSError when failing to parse HTTPS records)
Note that we just fix the exception - there still seems to be a problem with parsing HTTPS records
(Thnaks to @robinlandstrom)
(Thanks to @robinlandstrom)
* 0.9.23 2022-10-28 Issue #43: HTTPS reads after RD end (thanks to @robinlandstrom for pull request)
Issue #45: Dnslib fails to handle unknown RR types in NSEC RD type bitmap
Bimap now supports a function to map unknown types which we use to
dynamically map from rtype <-> TYPExxxx for unknown record types
RR zone representation updated to match RFC3597
Pull Request #47: Add support for DS, SSHFP, and TLSA records (thanks to @rmbolger)
License:
--------
Expand All @@ -405,7 +411,7 @@

from dnslib.dns import *

version = "0.9.22"
version = "0.9.23"

if __name__ == '__main__':
import doctest,sys,textwrap
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
#
# ./run_tests.sh
# python3 setup.py readme
# git push -am ...
# git commit -am ...
# git push
# git tag -a <version> -m <message>
# git push --tags
# (Create release from tag on Github)
Expand Down

0 comments on commit 0b2855f

Please sign in to comment.