Skip to content

Commit

Permalink
0.9.21 release
Browse files Browse the repository at this point in the history
  • Loading branch information
paulc committed Sep 19, 2022
1 parent bc85337 commit 7e34acb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,7 @@ Changelog:
Fix display of non-printable characters in TXT records
(Issue #32 - thanks to @sbv-csis)
Add --strip-aaaa option to dnslib.proxy
* 0.9.21 2022-09-19 Minor clean-up / add wheels to distro

License:
--------
Expand Down
3 changes: 2 additions & 1 deletion dnslib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,7 @@
Fix display of non-printable characters in TXT records
(Issue #32 - thanks to @sbv-csis)
Add --strip-aaaa option to dnslib.proxy
* 0.9.21 2022-09-19 Minor clean-up / add wheels to distro
License:
--------
Expand All @@ -401,7 +402,7 @@

from dnslib.dns import *

version = "0.9.20"
version = "0.9.21"

if __name__ == '__main__':
import doctest,sys,textwrap
Expand Down
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@

# To update PyPi version:
#
# Make sure you have updated version in __init__.py
# (Make sure you have updated version and changelog in __init__.py)
#
# ./run_tests.sh
# rm -rf dist
# python3 setup.py readme
# git push -am ...
# git tag -a <version> -m <message>
# git push --tags
#
# rm -rf dist
# python3 setup.py sdist
# python3 setup.py bdist_wheel
# python2 setup.py bdist_wheel
Expand Down

0 comments on commit 7e34acb

Please sign in to comment.