Skip to content

Commit

Permalink
Fixed KeyboardInterrupt handling with whois21 command.
Browse files Browse the repository at this point in the history
  • Loading branch information
MPCodeWriter21 committed Nov 10, 2022
1 parent 93901b9 commit 5985e7f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES-LOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Help this project by [Donation](DONATE.md)
Changes log
-----------

### 1.1.2

Fixed KeyboardInterrupt handling with `whois21` command.

### 1.1.1

Minor Fixes.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ python setup.py install
Changes
-------

### 1.1.1
### 1.1.2

Minor Fixes.
Fixed KeyboardInterrupt handling with `whois21` command.

Usage Examples:
---------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
LONG_DESCRIPTION = f.read()

DESCRIPTION = 'A simple and easy to use Python package that lets you query whois/RDAP information of a domain/IP.'
VERSION = '1.1.1'
VERSION = '1.1.2'
REQUIREMENTS = ['log21', 'importlib_resources', 'requests']

setup(
Expand All @@ -25,7 +25,7 @@
packages=find_packages(),
entry_points={
'console_scripts': [
'whois21=whois21.__main__:main'
'whois21=whois21.__main__:run'
]
},
install_requires=REQUIREMENTS,
Expand Down
2 changes: 1 addition & 1 deletion whois21/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
domain_registration_data_lookup
from .__main__ import main

__version__ = '1.1.1'
__version__ = '1.1.2'
__github__ = 'https://github.com/MPCodeWriter21/whois21'
__author__ = 'CodeWriter21'
__email__ = 'CodeWriter21@gmail.com'
Expand Down

0 comments on commit 5985e7f

Please sign in to comment.