diff --git a/README b/README index 195a7f2..4b66ec8 100644 --- a/README +++ b/README @@ -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: -------- diff --git a/dnslib/__init__.py b/dnslib/__init__.py index 11b41cb..d25f7b1 100644 --- a/dnslib/__init__.py +++ b/dnslib/__init__.py @@ -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: -------- @@ -401,7 +402,7 @@ from dnslib.dns import * -version = "0.9.20" +version = "0.9.21" if __name__ == '__main__': import doctest,sys,textwrap diff --git a/setup.py b/setup.py index 5f27490..91d68c9 100644 --- a/setup.py +++ b/setup.py @@ -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 -m +# git push --tags +# +# rm -rf dist # python3 setup.py sdist # python3 setup.py bdist_wheel # python2 setup.py bdist_wheel