Skip to content

Commit

Permalink
Minor Fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
MPCodeWriter21 committed Aug 20, 2022
1 parent 495a97d commit 93901b9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 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.1

Minor Fixes.

### 1.1.0

Added RDAP information collection and parsing support to WHOIS class.
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ whois21

whois21 is a simple and easy to use python package that lets you easily query whois information of a domain.


Features
--------

### WHOIS

+ Query whois information of a TLD from various whois servers and parse the results.
+ Get the Registration Information of a domain from different RDAP servers and parse the results.
+ Any idea? Feel free to [open an issue](https://github.com/MPCodeWriter21/whois21/issues) or submit a pull request.

![issues](https://img.shields.io/github/issues/MPCodeWriter21/whois21)
Expand Down Expand Up @@ -78,9 +79,9 @@ python setup.py install
Changes
-------

### 1.1.0
### 1.1.1

Added RDAP information collection and parsing support to WHOIS class.
Minor Fixes.

Usage Examples:
---------------
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
with open('README.md', 'r') as f:
LONG_DESCRIPTION = f.read()

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

setup(
Expand All @@ -15,7 +15,7 @@
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/MPCodeWriter21/PACKAGE_NAME',
url='https://github.com/MPCodeWriter21/whois21',
author='CodeWriter21',
author_email='[email protected]',
license='Apache License 2.0',
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.0'
__version__ = '1.1.1'
__github__ = 'https://github.com/MPCodeWriter21/whois21'
__author__ = 'CodeWriter21'
__email__ = '[email protected]'
Expand Down

0 comments on commit 93901b9

Please sign in to comment.