Skip to content

Commit

Permalink
Merge pull request #53 from pogzyb/bump-1.0.4-release
Browse files Browse the repository at this point in the history
Bump 1.0.4 release
  • Loading branch information
pogzyb committed Mar 3, 2023
2 parents 2cfc08a + 4ed750b commit db9cd8c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion asyncwhois/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"whois_ipv4",
"whois_ipv6",
]
__version__ = "1.0.3"
__version__ = "1.0.4"


def whois_domain(
Expand Down
10 changes: 5 additions & 5 deletions asyncwhois/parse_tld.py
Original file line number Diff line number Diff line change
Expand Up @@ -995,7 +995,7 @@ class RegexUA(TLDParser):

KNOWN_DATE_FORMATS = [
"%Y-%m-%d %H:%M:%S%z",
]
]

def __init__(self):
super().__init__()
Expand All @@ -1008,16 +1008,16 @@ def _fix_timezone(date_string: str) -> str:
:param date_string: date string
:return: fixed date string
>>> RegexUA._fix_timezone("2023-02-17 14:22:06+02")
'2023-02-17 14:22:06+0200'
>>>
>>>
>>> RegexUA._fix_timezone("2023-02-17 14:22:06+2")
'2023-02-17 14:22:06+0200'
>>>
>>>
>>> RegexUA._fix_timezone("2023-02-17 14:22:06+0200")
'2023-02-17 14:22:06+0200'
>>>
>>>
"""
if "+" in date_string:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = asyncwhois
version = attrs: asyncwhois.__version__
author = Joseph Obarzanek
author_email = pogzyb@umich.edu
description = asyncio-compatible Python module for performing WHOIS and RDAP queries for any domain
description = asyncio-friendly Python module for performing WHOIS and RDAP queries for any domain
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/pogzyb/asyncwhois
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_version(location: str) -> str:
version=get_version('asyncwhois/__init__.py'),
author="Joseph Obarzanek",
author_email="pogzyb@umich.edu",
description="asyncio-compatible Python module for WHOIS and RDAP queries.",
description="asyncio-friendly Python module for WHOIS and RDAP queries.",
long_description=long_description,
license="MIT",
install_requires=[
Expand Down

0 comments on commit db9cd8c

Please sign in to comment.