Skip to content

Commit bc351e2

Browse files
chore: Update log21 to v3.0.0
1 parent a47eeaa commit bc351e2

4 files changed

Lines changed: 13 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ Help this project by [Donation](DONATE.md)
66
Changes log
77
-----------
88

9+
### 1.4.7
10+
11+
+ Update `log21` to v3.0.0
12+
+ Update LICENSE
13+
914
### 1.4.6
1015

1116
+ Updated Dependencies

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ python -m build .
8686
Changes
8787
-------
8888

89-
### 1.4.6
89+
### 1.4.7
9090

91-
+ Updated Dependencies
92-
+ Updated LICENSE
91+
+ Update `log21` to v3.0.0
92+
+ Update LICENSE
9393

9494
Usage Examples
9595
---------------

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = [
99
]
1010
description = "A simple and easy to use Python package that lets you query whois/RDAP information of a domain/IP."
1111
readme = { file = "README.md", content-type = "text/markdown" }
12-
requires-python = ">=3.8"
12+
requires-python = ">=3.9"
1313
keywords = [
1414
"python", "python3", "CodeWriter21", "WHOIS", "whois21", "RDAP",
1515
"Registration Data Access Protocol", "DNS", "ASN"
@@ -19,12 +19,12 @@ classifiers = [
1919
"Programming Language :: Python :: 3",
2020
]
2121
dependencies = [
22-
"log21>=2.10.2",
22+
"log21>=3.0.0",
2323
"chardet>=5.2.0",
2424
"requests>=2.31.0",
2525
"importlib_resources>=6.1.0"
2626
]
27-
version = "1.4.6"
27+
version = "1.4.7"
2828

2929
[tool.setuptools]
3030
packages = ["whois21"]

whois21/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import chardet
1212
import requests
1313
import importlib_resources
14-
from log21.Colors import (RED, BLUE, GREEN, RESET, LIGHT_RED as LRED,
14+
from log21.colors import (RED, BLUE, GREEN, RESET, LIGHT_RED as LRED,
1515
LIGHT_BLUE as LBLUE, LIGHT_CYAN as LCYAN,
1616
LIGHT_GREEN as LGREEN)
1717

@@ -26,7 +26,7 @@
2626
domain_registration_data_lookup,
2727
domain_registration_data_lookup_)
2828

29-
__version__ = '1.4.6'
29+
__version__ = '1.4.7'
3030
__github__ = 'https://github.com/MPCodeWriter21/whois21'
3131
__author__ = 'CodeWriter21'
3232
__email__ = 'CodeWriter21@gmail.com'

0 commit comments

Comments
 (0)