Skip to content

Commit 7e34acb

Browse files
committed
0.9.21 release
1 parent bc85337 commit 7e34acb

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

README

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,7 @@ Changelog:
377377
Fix display of non-printable characters in TXT records
378378
(Issue #32 - thanks to @sbv-csis)
379379
Add --strip-aaaa option to dnslib.proxy
380+
* 0.9.21 2022-09-19 Minor clean-up / add wheels to distro
380381

381382
License:
382383
--------

dnslib/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,7 @@
379379
Fix display of non-printable characters in TXT records
380380
(Issue #32 - thanks to @sbv-csis)
381381
Add --strip-aaaa option to dnslib.proxy
382+
* 0.9.21 2022-09-19 Minor clean-up / add wheels to distro
382383
383384
License:
384385
--------
@@ -401,7 +402,7 @@
401402

402403
from dnslib.dns import *
403404

404-
version = "0.9.20"
405+
version = "0.9.21"
405406

406407
if __name__ == '__main__':
407408
import doctest,sys,textwrap

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@
22

33
# To update PyPi version:
44
#
5-
# Make sure you have updated version in __init__.py
5+
# (Make sure you have updated version and changelog in __init__.py)
66
#
77
# ./run_tests.sh
8-
# rm -rf dist
98
# python3 setup.py readme
9+
# git push -am ...
10+
# git tag -a <version> -m <message>
11+
# git push --tags
12+
#
13+
# rm -rf dist
1014
# python3 setup.py sdist
1115
# python3 setup.py bdist_wheel
1216
# python2 setup.py bdist_wheel

0 commit comments

Comments
 (0)